| Index: third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| index a4c5bce83a2f14b20d49c5aeb84a3a6dcc871722..861d27a5c1ab2bd498bdd6834ad119c528a2d084 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSInterpolationType.cpp
|
| @@ -250,9 +250,9 @@ CSSInterpolationType::maybeConvertCustomPropertyDeclarationInternal(
|
|
|
| InterpolationValue CSSInterpolationType::maybeConvertUnderlyingValue(
|
| const InterpolationEnvironment& environment) const {
|
| - const StyleResolverState& state = environment.state();
|
| + const ComputedStyle& style = environment.style();
|
| if (!getProperty().isCSSCustomProperty()) {
|
| - return maybeConvertStandardPropertyUnderlyingValue(*state.style());
|
| + return maybeConvertStandardPropertyUnderlyingValue(style);
|
| }
|
|
|
| const PropertyHandle property = getProperty();
|
| @@ -261,7 +261,7 @@ InterpolationValue CSSInterpolationType::maybeConvertUnderlyingValue(
|
| return nullptr;
|
| }
|
| const CSSValue* underlyingValue =
|
| - state.style()->getRegisteredVariable(name, m_registration->inherits());
|
| + style.getRegisteredVariable(name, m_registration->inherits());
|
| if (!underlyingValue) {
|
| underlyingValue = m_registration->initial();
|
| }
|
|
|