StyleElementUtils.cpp 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. /*
  2. * Copyright (c) 2023, Preston Taylor <PrestonLeeTaylor@proton.me>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/CSS/Parser/Parser.h>
  7. #include <LibWeb/CSS/StyleComputer.h>
  8. #include <LibWeb/DOM/Document.h>
  9. #include <LibWeb/DOM/ShadowRoot.h>
  10. #include <LibWeb/DOM/StyleElementUtils.h>
  11. #include <LibWeb/Infra/Strings.h>
  12. namespace Web::DOM {
  13. // The user agent must run the "update a style block" algorithm whenever one of the following conditions occur:
  14. // FIXME: The element is popped off the stack of open elements of an HTML parser or XML parser.
  15. //
  16. // NOTE: This is basically done by children_changed() today:
  17. // The element's children changed steps run.
  18. //
  19. // NOTE: This is basically done by inserted() and removed_from() today:
  20. // The element is not on the stack of open elements of an HTML parser or XML parser, and it becomes connected or disconnected.
  21. //
  22. // https://html.spec.whatwg.org/multipage/semantics.html#update-a-style-block
  23. void StyleElementUtils::update_a_style_block(DOM::Element& style_element)
  24. {
  25. // OPTIMIZATION: Skip parsing CSS if we're in the middle of parsing a HTML fragment.
  26. // The style block will be parsed upon insertion into a proper document.
  27. if (style_element.document().is_temporary_document_for_fragment_parsing())
  28. return;
  29. // 1. Let element be the style element.
  30. // 2. If element has an associated CSS style sheet, remove the CSS style sheet in question.
  31. if (m_associated_css_style_sheet) {
  32. m_style_sheet_list->remove_a_css_style_sheet(*m_associated_css_style_sheet);
  33. m_style_sheet_list = nullptr;
  34. // FIXME: This should probably be handled by StyleSheet::set_owner_node().
  35. m_associated_css_style_sheet = nullptr;
  36. }
  37. // 3. If element is not connected, then return.
  38. if (!style_element.is_connected())
  39. return;
  40. // 4. If element's type attribute is present and its value is neither the empty string nor an ASCII case-insensitive match for "text/css", then return.
  41. auto type_attribute = style_element.attribute(HTML::AttributeNames::type);
  42. if (type_attribute.has_value() && !type_attribute->is_empty() && !Infra::is_ascii_case_insensitive_match(type_attribute->bytes_as_string_view(), "text/css"sv))
  43. return;
  44. // FIXME: 5. If the Should element's inline behavior be blocked by Content Security Policy? algorithm returns "Blocked" when executed upon the style element, "style", and the style element's child text content, then return. [CSP]
  45. // FIXME: This is a bit awkward, as the spec doesn't actually tell us when to parse the CSS text,
  46. // so we just do it here and pass the parsed sheet to create_a_css_style_sheet().
  47. auto* sheet = parse_css_stylesheet(CSS::Parser::ParsingContext(style_element.document()), style_element.text_content().value_or(String {}));
  48. if (!sheet)
  49. return;
  50. // FIXME: This should probably be handled by StyleSheet::set_owner_node().
  51. m_associated_css_style_sheet = sheet;
  52. // 6. Create a CSS style sheet with the following properties...
  53. m_style_sheet_list = style_element.document_or_shadow_root_style_sheets();
  54. m_style_sheet_list->create_a_css_style_sheet(
  55. "text/css"_string,
  56. &style_element,
  57. style_element.attribute(HTML::AttributeNames::media).value_or({}),
  58. style_element.in_a_document_tree()
  59. ? style_element.attribute(HTML::AttributeNames::title).value_or({})
  60. : String {},
  61. false,
  62. true,
  63. {},
  64. nullptr,
  65. nullptr,
  66. *sheet);
  67. }
  68. void StyleElementUtils::visit_edges(JS::Cell::Visitor& visitor)
  69. {
  70. visitor.visit(m_associated_css_style_sheet);
  71. visitor.visit(m_style_sheet_list);
  72. }
  73. }