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

Unified Diff: third_party/WebKit/Source/core/css/parser/CSSVariableParser.h

Issue 2323633002: Implement animation tainted custom property values (Closed)
Patch Set: Rebased Created 4 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
Index: third_party/WebKit/Source/core/css/parser/CSSVariableParser.h
diff --git a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.h b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.h
index 765692622bd7cd75d70286164948d05c5789590a..49c2920178284d541178ec1df57e8d9205cebb2b 100644
--- a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.h
+++ b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.h
@@ -22,10 +22,12 @@ class CORE_EXPORT CSSVariableParser {
static CSSCustomPropertyDeclaration* parseDeclarationValue(
const AtomicString&,
- CSSParserTokenRange);
+ CSSParserTokenRange,
+ bool isAnimationTainted);
static CSSVariableReferenceValue* parseRegisteredPropertyValue(
CSSParserTokenRange,
- bool requireVarReference);
+ bool requireVarReference,
+ bool isAnimationTainted);
static bool isValidVariableName(const CSSParserToken&);
static bool isValidVariableName(const String&);

Powered by Google App Engine
This is Rietveld 408576698