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

Unified Diff: third_party/WebKit/Source/core/css/SelectorChecker.cpp

Issue 1982003002: Rename v0 custom element flags to V0 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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: third_party/WebKit/Source/core/css/SelectorChecker.cpp
diff --git a/third_party/WebKit/Source/core/css/SelectorChecker.cpp b/third_party/WebKit/Source/core/css/SelectorChecker.cpp
index ab2b95474d06523bf92f83d22d0aabdedafd3c45..8e56eb79eeafe6ddb30830ef4f994dc487546ccc 100644
--- a/third_party/WebKit/Source/core/css/SelectorChecker.cpp
+++ b/third_party/WebKit/Source/core/css/SelectorChecker.cpp
@@ -909,7 +909,7 @@ bool SelectorChecker::checkPseudoClass(const SelectorCheckingContext& context, M
return element == element.document().documentElement();
return context.scope == &element;
case CSSSelector::PseudoUnresolved:
- return element.isUnresolvedCustomElement();
+ return element.isUnresolvedV0CustomElement();
case CSSSelector::PseudoHost:
case CSSSelector::PseudoHostContext:
return checkPseudoHost(context, result);

Powered by Google App Engine
This is Rietveld 408576698