Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Unified Diff: Source/core/css/CSSSelector.h

Issue 187353003: Implement /content/ combinator. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Patch for landing Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/core/css/CSSParserValues.h ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSSelector.h
diff --git a/Source/core/css/CSSSelector.h b/Source/core/css/CSSSelector.h
index 8da0113994bd4b4daf412b437490551dfde72291..814b6726ca9540d21b974f25adcefdb3ec515976 100644
--- a/Source/core/css/CSSSelector.h
+++ b/Source/core/css/CSSSelector.h
@@ -132,7 +132,8 @@ namespace WebCore {
// FIXME: implement named combinator and replace the following /shadow/, /shadow-all/ and
// /shadow-deep/ with named combinator's implementation.
ShadowAll,
- ShadowDeep
+ ShadowDeep,
+ ShadowContent // /content/ for shadow styling
};
enum PseudoType {
@@ -216,7 +217,6 @@ namespace WebCore {
PseudoPastCue,
PseudoDistributed,
PseudoUnresolved,
- PseudoContent,
PseudoHost,
PseudoAncestor
};
@@ -288,7 +288,6 @@ namespace WebCore {
bool isSiblingSelector() const;
bool isAttributeSelector() const;
bool isDistributedPseudoElement() const;
- bool isContentPseudoElement() const;
bool isHostPseudoClass() const;
// FIXME: selectors with no tagHistory() get a relation() of Descendant. It should instead be
@@ -309,7 +308,7 @@ namespace WebCore {
bool relationIsAffectedByPseudoContent() const { return m_relationIsAffectedByPseudoContent; }
void setRelationIsAffectedByPseudoContent() { m_relationIsAffectedByPseudoContent = true; }
- unsigned m_relation : 3; // enum Relation
+ unsigned m_relation : 4; // enum Relation
mutable unsigned m_match : 4; // enum Match
mutable unsigned m_pseudoType : 8; // PseudoType
@@ -419,11 +418,6 @@ inline bool CSSSelector::isDistributedPseudoElement() const
return m_match == PseudoElement && pseudoType() == PseudoDistributed;
}
-inline bool CSSSelector::isContentPseudoElement() const
-{
- return m_match == PseudoElement && pseudoType() == PseudoContent;
-}
-
inline void CSSSelector::setValue(const AtomicString& value)
{
ASSERT(m_match != Tag);
« no previous file with comments | « Source/core/css/CSSParserValues.h ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698