summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/css/css_rule.h
blob: 7c7d76c19ece8af167122c5b80855a5f3782eb2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
/*
 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
 * (C) 2002-2003 Dirk Mueller (mueller@kde.org)
 * Copyright (C) 2002, 2006, 2007, 2012 Apple Inc. All rights reserved.
 * Copyright (C) 2011 Andreas Kling (kling@webkit.org)
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Library General Public
 * License as published by the Free Software Foundation; either
 * version 2 of the License, or (at your option) any later version.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Library General Public License for more details.
 *
 * You should have received a copy of the GNU Library General Public License
 * along with this library; see the file COPYING.LIB.  If not, write to
 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA 02110-1301, USA.
 */

#ifndef THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_RULE_H_
#define THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_RULE_H_

#include "third_party/blink/renderer/core/core_export.h"
#include "third_party/blink/renderer/platform/bindings/script_wrappable.h"
#include "third_party/blink/renderer/platform/heap/handle.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"

namespace blink {

class CSSParserContext;
class CSSRuleList;
class CSSStyleSheet;
class StyleRuleBase;
enum class SecureContextMode;

class CORE_EXPORT CSSRule : public ScriptWrappable {
  DEFINE_WRAPPERTYPEINFO();

 public:
  ~CSSRule() override = default;

  enum Type {
    // Web-exposed values, see css_rule.idl:
    kStyleRule = 1,
    kCharsetRule = 2,
    kImportRule = 3,
    kMediaRule = 4,
    kFontFaceRule = 5,
    kPageRule = 6,
    kKeyframesRule = 7,
    kKeyframeRule = 8,
    kNamespaceRule = 10,
    kCounterStyleRule = 11,
    kSupportsRule = 12,
    kViewportRule = 15,
    // CSSOM constants are deprecated [1], and there will be no new
    // web-exposed values.
    //
    // [1] https://wiki.csswg.org/spec/cssom-constants

    // Values for internal use, not web-exposed:
    kPropertyRule = 16,
    kScrollTimelineRule = 17,
  };

  virtual Type GetType() const = 0;

  // https://drafts.csswg.org/cssom/#dom-cssrule-type
  int type() const {
    Type type = GetType();
    return type > Type::kViewportRule ? 0 : static_cast<int>(type);
  }

  virtual String cssText() const = 0;
  virtual void Reattach(StyleRuleBase*) = 0;

  virtual CSSRuleList* cssRules() const { return nullptr; }

  void SetParentStyleSheet(CSSStyleSheet*);

  void SetParentRule(CSSRule*);

  void Trace(Visitor*) const override;

  CSSStyleSheet* parentStyleSheet() const {
    if (parent_is_rule_)
      return parent_ ? ParentAsCSSRule()->parentStyleSheet() : nullptr;
    return ParentAsCSSStyleSheet();
  }

  CSSRule* parentRule() const {
    return parent_is_rule_ ? ParentAsCSSRule() : nullptr;
  }

  // The CSSOM spec states that "setting the cssText attribute must do nothing."
  void setCSSText(const String&) {}

 protected:
  CSSRule(CSSStyleSheet* parent);

  bool HasCachedSelectorText() const { return has_cached_selector_text_; }
  void SetHasCachedSelectorText(bool has_cached_selector_text) const {
    has_cached_selector_text_ = has_cached_selector_text;
  }

  const CSSParserContext* ParserContext(SecureContextMode) const;

 private:
  bool VerifyParentIsCSSRule() const;
  bool VerifyParentIsCSSStyleSheet() const;

  CSSRule* ParentAsCSSRule() const {
    DCHECK(parent_is_rule_);
    DCHECK(VerifyParentIsCSSRule());
    return reinterpret_cast<CSSRule*>(parent_.Get());
  }
  CSSStyleSheet* ParentAsCSSStyleSheet() const {
    DCHECK(!parent_is_rule_);
    DCHECK(VerifyParentIsCSSStyleSheet());
    return reinterpret_cast<CSSStyleSheet*>(parent_.Get());
  }

  mutable unsigned char has_cached_selector_text_ : 1;
  unsigned char parent_is_rule_ : 1;

  // parent_ should reference either CSSRule or CSSStyleSheet (both are
  // descendants of ScriptWrappable). This field should only be accessed
  // via the getters above (ParentAsCSSRule and ParentAsCSSStyleSheet).
  Member<ScriptWrappable> parent_;
};

}  // namespace blink

#endif  // THIRD_PARTY_BLINK_RENDERER_CORE_CSS_CSS_RULE_H_