| Index: Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| diff --git a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| index 4a1b60fca0f9ea44600589c5573f3eb541f89743..a6b0cfd28fa2e60e8f2be29b3a5d62646e05b417 100644
|
| --- a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| +++ b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| @@ -130,8 +130,8 @@ bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const C
|
|
|
| bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSValuePair& pair)
|
| {
|
| - return interpolationRequiresStyleResolve(*pair.first())
|
| - || interpolationRequiresStyleResolve(*pair.second());
|
| + return interpolationRequiresStyleResolve(pair.first())
|
| + || interpolationRequiresStyleResolve(pair.second());
|
| }
|
|
|
| bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const CSSBasicShape& shape)
|
|
|