Chromium Code Reviews

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserSelector.h

Issue 1565263003: Implement CSS parser part for ::slotted pseudo element (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address rune's first round of comments in layout test. Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
index 1598baf39b2f9648d54b81eebdbdeeb5f1b20758..d615d16b42414564ddf0b61778723df588418219 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserSelector.h
@@ -49,6 +49,8 @@ public:
void setForPage() { m_selector->setForPage(); }
void setRelationIsAffectedByPseudoContent() { m_selector->setRelationIsAffectedByPseudoContent(); }
bool relationIsAffectedByPseudoContent() const { return m_selector->relationIsAffectedByPseudoContent(); }
+ void setRelationIsAffectedByPseudoSlotted() { m_selector->setRelationIsAffectedByPseudoSlotted(); }
+ bool relationIsAffectedByPseudoSlotted() const { return m_selector->relationIsAffectedByPseudoSlotted(); }
void updatePseudoType(const AtomicString& value, bool hasArguments = false) const { m_selector->updatePseudoType(value, hasArguments); }

Powered by Google App Engine