CSSStyleRule.cpp 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  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/WebIDL/ExceptionOr.h>
  11. namespace Web::CSS {
  12. JS::NonnullGCPtr<CSSStyleRule> CSSStyleRule::create(JS::Realm& realm, Vector<NonnullRefPtr<Web::CSS::Selector>>&& selectors, CSSStyleDeclaration& declaration)
  13. {
  14. return realm.heap().allocate<CSSStyleRule>(realm, realm, move(selectors), declaration);
  15. }
  16. CSSStyleRule::CSSStyleRule(JS::Realm& realm, Vector<NonnullRefPtr<Selector>>&& selectors, CSSStyleDeclaration& declaration)
  17. : CSSRule(realm)
  18. , m_selectors(move(selectors))
  19. , m_declaration(declaration)
  20. {
  21. }
  22. void CSSStyleRule::initialize(JS::Realm& realm)
  23. {
  24. Base::initialize(realm);
  25. set_prototype(&Bindings::ensure_web_prototype<Bindings::CSSStyleRulePrototype>(realm, "CSSStyleRule"));
  26. }
  27. void CSSStyleRule::visit_edges(Cell::Visitor& visitor)
  28. {
  29. Base::visit_edges(visitor);
  30. visitor.visit(m_declaration);
  31. }
  32. // https://www.w3.org/TR/cssom/#dom-cssstylerule-style
  33. CSSStyleDeclaration* CSSStyleRule::style()
  34. {
  35. return m_declaration;
  36. }
  37. // https://www.w3.org/TR/cssom/#serialize-a-css-rule
  38. DeprecatedString CSSStyleRule::serialized() const
  39. {
  40. StringBuilder builder;
  41. // 1. Let s initially be the result of performing serialize a group of selectors on the rule’s associated selectors,
  42. // followed by the string " {", i.e., a single SPACE (U+0020), followed by LEFT CURLY BRACKET (U+007B).
  43. builder.append(serialize_a_group_of_selectors(selectors()));
  44. builder.append(" {"sv);
  45. // 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.
  46. auto decls = declaration().length() > 0 ? declaration().serialized() : Optional<DeprecatedString>();
  47. // 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.
  48. Optional<DeprecatedString> rules;
  49. // 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.
  50. if (!decls.has_value() && !rules.has_value()) {
  51. builder.append(" }"sv);
  52. return builder.to_deprecated_string();
  53. }
  54. // 5. If rules is null:
  55. if (!rules.has_value()) {
  56. // 1. Append a single SPACE (U+0020) to s
  57. builder.append(' ');
  58. // 2. Append decls to s
  59. builder.append(*decls);
  60. // 3. Append " }" to s (i.e. a single SPACE (U+0020) followed by RIGHT CURLY BRACKET (U+007D)).
  61. builder.append(" }"sv);
  62. // 4. Return s.
  63. return builder.to_deprecated_string();
  64. }
  65. // FIXME: 6. Otherwise:
  66. // FIXME: 1. If decls is not null, prepend it to rules.
  67. // FIXME: 2. For each rule in rules:
  68. // FIXME: 1. Append a newline followed by two spaces to s.
  69. // FIXME: 2. Append rule to s.
  70. // FIXME: 3. Append a newline followed by RIGHT CURLY BRACKET (U+007D) to s.
  71. // FIXME: 4. Return s.
  72. TODO();
  73. }
  74. // https://www.w3.org/TR/cssom/#dom-cssstylerule-selectortext
  75. DeprecatedString CSSStyleRule::selector_text() const
  76. {
  77. // The selectorText attribute, on getting, must return the result of serializing the associated group of selectors.
  78. return serialize_a_group_of_selectors(selectors()).to_deprecated_string();
  79. }
  80. // https://www.w3.org/TR/cssom/#dom-cssstylerule-selectortext
  81. void CSSStyleRule::set_selector_text(StringView selector_text)
  82. {
  83. // 1. Run the parse a group of selectors algorithm on the given value.
  84. auto parsed_selectors = parse_selector(Parser::ParsingContext { realm() }, selector_text);
  85. // 2. If the algorithm returns a non-null value replace the associated group of selectors with the returned value.
  86. if (parsed_selectors.has_value())
  87. m_selectors = parsed_selectors.release_value();
  88. // 3. Otherwise, if the algorithm returns a null value, do nothing.
  89. }
  90. }