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

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

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 | « Source/core/css/CSSSelector.h ('k') | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/css/CSSSelector.cpp
diff --git a/Source/core/css/CSSSelector.cpp b/Source/core/css/CSSSelector.cpp
index 2670210b67480ac749f930702aa531099d420ad1..2dc9bd812770329996286aea073cca9dd1d0137a 100644
--- a/Source/core/css/CSSSelector.cpp
+++ b/Source/core/css/CSSSelector.cpp
@@ -242,7 +242,6 @@ PseudoId CSSSelector::pseudoId(PseudoType type)
case PseudoRightPage:
case PseudoInRange:
case PseudoOutOfRange:
- case PseudoUserAgentCustomElement:
case PseudoWebKitCustomElement:
case PseudoCue:
case PseudoFutureCue:
@@ -443,8 +442,6 @@ CSSSelector::PseudoType CSSSelector::parsePseudoType(const AtomicString& name, b
if (name.startsWith("-webkit-"))
return PseudoWebKitCustomElement;
- if (name.startsWith("cue"))
- return PseudoUserAgentCustomElement;
return PseudoUnknown;
}
@@ -476,7 +473,6 @@ void CSSSelector::extractPseudoType() const
case PseudoScrollbarTrack:
case PseudoScrollbarTrackPiece:
case PseudoSelection:
- case PseudoUserAgentCustomElement:
case PseudoWebKitCustomElement:
case PseudoContent:
case PseudoShadow:
« no previous file with comments | « Source/core/css/CSSSelector.h ('k') | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698