| Index: third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| index 1a76c08b289556cd5ee888d1f2511b7c0bdebcad..ef8967ee2c664b234e72ad58d3dfe819581eba36 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSParser.cpp
|
| @@ -102,7 +102,8 @@ bool CSSParser::parseValueForCustomProperty(
|
| const AtomicString& propertyName,
|
| const String& value,
|
| bool important,
|
| - StyleSheetContents* styleSheet) {
|
| + StyleSheetContents* styleSheet,
|
| + bool isAnimationTainted) {
|
| DCHECK(CSSVariableParser::isValidVariableName(propertyName));
|
| if (value.isEmpty())
|
| return false;
|
| @@ -112,8 +113,8 @@ bool CSSParser::parseValueForCustomProperty(
|
| context = styleSheet->parserContext();
|
| context.setMode(parserMode);
|
| }
|
| - return CSSParserImpl::parseVariableValue(declaration, propertyName, value,
|
| - important, context);
|
| + return CSSParserImpl::parseVariableValue(
|
| + declaration, propertyName, value, important, context, isAnimationTainted);
|
| }
|
|
|
| ImmutableStylePropertySet* CSSParser::parseCustomPropertySet(
|
|
|