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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp

Issue 2500813003: Parser support for >>> (shadow-piercing descendant) combinator. (Closed)
Patch Set: Address timloh's comments. Created 4 years, 1 month 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/parser/CSSParserMode.cpp
diff --git a/third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp b/third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp
index 90ae17da2437fbe8286824bd2c29110beba89900..e028dfd4b383489d8e126274327e708f80e3a5e1 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp
+++ b/third_party/WebKit/Source/core/css/parser/CSSParserMode.cpp
@@ -36,9 +36,12 @@
namespace blink {
-CSSParserContext::CSSParserContext(CSSParserMode mode, UseCounter* useCounter)
+CSSParserContext::CSSParserContext(CSSParserMode mode,
+ UseCounter* useCounter,
+ SelectorProfile profile)
: m_mode(mode),
m_matchMode(mode),
+ m_profile(profile),
m_isHTMLDocument(false),
m_useLegacyBackgroundSizeShorthandBehavior(false),
m_shouldCheckContentSecurityPolicy(DoNotCheckContentSecurityPolicy),

Powered by Google App Engine
This is Rietveld 408576698