| Index: third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| index 54bcb994514113982ccaa633bf4890a301df9d28..32f29b8b1542fc06db14f8216431846cc4ed94f3 100644
|
| --- a/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| +++ b/third_party/WebKit/Source/core/css/resolver/StyleBuilderCustom.cpp
|
| @@ -119,8 +119,8 @@ void StyleBuilder::ApplyProperty(CSSPropertyID id,
|
| bool omit_animation_tainted =
|
| CSSAnimations::IsAnimationAffectingProperty(id);
|
| const CSSValue* resolved_value =
|
| - CSSVariableResolver::ResolveVariableReferences(state, id, value,
|
| - omit_animation_tainted);
|
| + CSSVariableResolver(state).ResolveVariableReferences(
|
| + id, value, omit_animation_tainted);
|
| ApplyProperty(id, state, *resolved_value);
|
|
|
| if (!state.Style()->HasVariableReferenceFromNonInheritedProperty() &&
|
|
|