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

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

Issue 183853035: Renamed /shadow-all/ to /shadow/. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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
Index: Source/core/css/CSSSelector.cpp
diff --git a/Source/core/css/CSSSelector.cpp b/Source/core/css/CSSSelector.cpp
index 90dead46e310b931cb9a8986509c420b2a01ceff..20fe901d42e4d5be030aed15c5bfb26f21aceafb 100644
--- a/Source/core/css/CSSSelector.cpp
+++ b/Source/core/css/CSSSelector.cpp
@@ -760,8 +760,8 @@ String CSSSelector::selectorText(const String& rightSide) const
if (cs->relationIsAffectedByPseudoContent() && tagHistory->pseudoType() != CSSSelector::PseudoContent)
return tagHistory->selectorText("::-webkit-distributed(> " + str.toString() + rightSide + ")");
return tagHistory->selectorText(" > " + str.toString() + rightSide);
- case CSSSelector::ShadowAll:
- return tagHistory->selectorText(" /shadow-all/ " + str.toString() + rightSide);
+ case CSSSelector::Shadow:
+ return tagHistory->selectorText(" /shadow/ " + str.toString() + rightSide);
case CSSSelector::ShadowDeep:
return tagHistory->selectorText(" /shadow-deep/ " + str.toString() + rightSide);
case CSSSelector::DirectAdjacent:

Powered by Google App Engine
This is Rietveld 408576698