CSSStyleRule.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120
  1. /*
  2. * Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
  3. *
  4. * SPDX-License-Identifier: BSD-2-Clause
  5. */
  6. #include <LibWeb/Bindings/CSSStyleRulePrototype.h>
  7. #include <LibWeb/Bindings/Intrinsics.h>
  8. #include <LibWeb/CSS/CSSStyleRule.h>
  9. #include <LibWeb/CSS/Parser/Parser.h>
  10. #include <LibWeb/CSS/StyleComputer.h>
  11. #include <LibWeb/WebIDL/ExceptionOr.h>
  12. namespace Web::CSS {
  13. JS_DEFINE_ALLOCATOR(CSSStyleRule);
  14. JS::NonnullGCPtr<CSSStyleRule> CSSStyleRule::create(JS::Realm& realm, Vector<NonnullRefPtr<Web::CSS::Selector>>&& selectors, PropertyOwningCSSStyleDeclaration& declaration)
  15. {
  16. return realm.heap().allocate<CSSStyleRule>(realm, realm, move(selectors), declaration);
  17. }
  18. CSSStyleRule::CSSStyleRule(JS::Realm& realm, Vector<NonnullRefPtr<Selector>>&& selectors, PropertyOwningCSSStyleDeclaration& declaration)
  19. : CSSRule(realm)
  20. , m_selectors(move(selectors))
  21. , m_declaration(declaration)
  22. {
  23. }
  24. void CSSStyleRule::initialize(JS::Realm& realm)
  25. {
  26. Base::initialize(realm);
  27. WEB_SET_PROTOTYPE_FOR_INTERFACE(CSSStyleRule);
  28. }
  29. void CSSStyleRule::visit_edges(Cell::Visitor& visitor)
  30. {
  31. Base::visit_edges(visitor);
  32. visitor.visit(m_declaration);
  33. }
  34. // https://www.w3.org/TR/cssom/#dom-cssstylerule-style
  35. CSSStyleDeclaration* CSSStyleRule::style()
  36. {
  37. return m_declaration;
  38. }
  39. // https://www.w3.org/TR/cssom/#serialize-a-css-rule
  40. String CSSStyleRule::serialized() const
  41. {
  42. StringBuilder builder;
  43. // 1. Let s initially be the result of performing serialize a group of selectors on the rule’s associated selectors,
  44. // followed by the string " {", i.e., a single SPACE (U+0020), followed by LEFT CURLY BRACKET (U+007B).
  45. builder.append(serialize_a_group_of_selectors(selectors()));
  46. builder.append(" {"sv);
  47. // 2. Let decls be the result of performing serialize a CSS declaration block on the rule’s associated declarations, or null if there are no such declarations.
  48. auto decls = declaration().length() > 0 ? declaration().serialized() : Optional<String>();
  49. // FIXME: 3. Let rules be the result of performing serialize a CSS rule on each rule in the rule’s cssRules list, or null if there are no such rules.
  50. Optional<String> rules;
  51. // 4. If decls and rules are both null, append " }" to s (i.e. a single SPACE (U+0020) followed by RIGHT CURLY BRACKET (U+007D)) and return s.
  52. if (!decls.has_value() && !rules.has_value()) {
  53. builder.append(" }"sv);
  54. return MUST(builder.to_string());
  55. }
  56. // 5. If rules is null:
  57. if (!rules.has_value()) {
  58. // 1. Append a single SPACE (U+0020) to s
  59. builder.append(' ');
  60. // 2. Append decls to s
  61. builder.append(*decls);
  62. // 3. Append " }" to s (i.e. a single SPACE (U+0020) followed by RIGHT CURLY BRACKET (U+007D)).
  63. builder.append(" }"sv);
  64. // 4. Return s.
  65. return MUST(builder.to_string());
  66. }
  67. // FIXME: 6. Otherwise:
  68. // FIXME: 1. If decls is not null, prepend it to rules.
  69. // FIXME: 2. For each rule in rules:
  70. // FIXME: 1. Append a newline followed by two spaces to s.
  71. // FIXME: 2. Append rule to s.
  72. // FIXME: 3. Append a newline followed by RIGHT CURLY BRACKET (U+007D) to s.
  73. // FIXME: 4. Return s.
  74. TODO();
  75. }
  76. // https://www.w3.org/TR/cssom/#dom-cssstylerule-selectortext
  77. String CSSStyleRule::selector_text() const
  78. {
  79. // The selectorText attribute, on getting, must return the result of serializing the associated group of selectors.
  80. return serialize_a_group_of_selectors(selectors());
  81. }
  82. // https://www.w3.org/TR/cssom/#dom-cssstylerule-selectortext
  83. void CSSStyleRule::set_selector_text(StringView selector_text)
  84. {
  85. // 1. Run the parse a group of selectors algorithm on the given value.
  86. auto parsed_selectors = parse_selector(Parser::ParsingContext { realm() }, selector_text);
  87. // 2. If the algorithm returns a non-null value replace the associated group of selectors with the returned value.
  88. if (parsed_selectors.has_value()) {
  89. m_selectors = parsed_selectors.release_value();
  90. if (auto* sheet = parent_style_sheet()) {
  91. if (auto style_sheet_list = sheet->style_sheet_list()) {
  92. auto& document = style_sheet_list->document();
  93. document.style_computer().invalidate_rule_cache();
  94. document.invalidate_style();
  95. }
  96. }
  97. }
  98. // 3. Otherwise, if the algorithm returns a null value, do nothing.
  99. }
  100. }