| Index: sky/engine/core/css/RuleSet.h
|
| diff --git a/sky/engine/core/css/RuleSet.h b/sky/engine/core/css/RuleSet.h
|
| index c4fae3c8deae40bf5bec822d3e66fb7df38ff951..a446cae8e74fca3c47d9a75de843e69edbc37fa3 100644
|
| --- a/sky/engine/core/css/RuleSet.h
|
| +++ b/sky/engine/core/css/RuleSet.h
|
| @@ -56,8 +56,6 @@ public:
|
| bool isLastInArray() const { return m_isLastInArray; }
|
| void setLastInArray(bool flag) { m_isLastInArray = flag; }
|
|
|
| - bool containsAttributeSelector() const { return m_containsAttributeSelector; }
|
| -
|
| private:
|
| RawPtr<StyleRule> m_rule;
|
| unsigned m_selectorIndex : 12;
|
| @@ -65,7 +63,6 @@ private:
|
| // This number was picked fairly arbitrarily. We can probably lower it if we need to.
|
| // Some simple testing showed <100,000 RuleData's on large sites.
|
| unsigned m_position : 17;
|
| - unsigned m_containsAttributeSelector : 1;
|
| };
|
|
|
| struct SameSizeAsRuleData {
|
|
|