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

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

Issue 646853007: Remove fallback matching ::cue* pseudo-element selectors (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: fix inspector dependency Created 6 years, 2 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 | « no previous file | 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 56ea79165f6dd005f892ae0bc47b1e899436df51..100241c79d3b8771cb111261745be63fc82dbcef 100644
--- a/Source/core/css/CSSSelector.h
+++ b/Source/core/css/CSSSelector.h
@@ -205,7 +205,6 @@ namespace blink {
PseudoFullScreenAncestor,
PseudoInRange,
PseudoOutOfRange,
- PseudoUserAgentCustomElement,
PseudoWebKitCustomElement,
PseudoCue,
PseudoFutureCue,
@@ -405,7 +404,7 @@ inline bool CSSSelector::matchesPseudoElement() const
inline bool CSSSelector::isCustomPseudoElement() const
{
- return m_match == PseudoElement && (m_pseudoType == PseudoUserAgentCustomElement || m_pseudoType == PseudoWebKitCustomElement);
+ return m_match == PseudoElement && m_pseudoType == PseudoWebKitCustomElement;
}
inline bool CSSSelector::isHostPseudoClass() const
« no previous file with comments | « no previous file | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698