| Index: third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| index d1e2b556d785cd3357b3ab8d5aa739b167237ee7..367fe981f2a4ee762ccedda46f4204c8831fcf13 100644
|
| --- a/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| +++ b/third_party/WebKit/Source/core/css/parser/CSSVariableParser.cpp
|
| @@ -154,6 +154,7 @@ CSSCustomPropertyDeclaration* CSSVariableParser::ParseDeclarationValue(
|
|
|
| CSSVariableReferenceValue* CSSVariableParser::ParseRegisteredPropertyValue(
|
| CSSParserTokenRange range,
|
| + const CSSParserContext& context,
|
| bool require_var_reference,
|
| bool is_animation_tainted) {
|
| if (range.AtEnd())
|
| @@ -170,7 +171,8 @@ CSSVariableReferenceValue* CSSVariableParser::ParseRegisteredPropertyValue(
|
| return nullptr;
|
| // TODO(timloh): Should this be hasReferences || hasAtApplyRule?
|
| return CSSVariableReferenceValue::Create(
|
| - CSSVariableData::Create(range, is_animation_tainted, has_references));
|
| + CSSVariableData::Create(range, is_animation_tainted, has_references),
|
| + context);
|
| }
|
|
|
| } // namespace blink
|
|
|