| Index: Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| diff --git a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| index c96ccecfd8969c8bb682234f248c1f209df27570..0cb2b6668a598ee079bbf659443f98d04c58df07 100644
|
| --- a/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| +++ b/Source/core/animation/DeferredLegacyStyleInterpolation.cpp
|
| @@ -58,7 +58,8 @@ bool DeferredLegacyStyleInterpolation::interpolationRequiresStyleResolve(const C
|
|
|
| if (primitiveValue.isCalculated()) {
|
| CSSLengthArray lengthArray(CSSPrimitiveValue::LengthUnitTypeCount);
|
| - primitiveValue.accumulateLengthArray(lengthArray);
|
| + CSSLengthTypeArray lengthTypeArray(CSSPrimitiveValue::LengthUnitTypeCount);
|
| + primitiveValue.accumulateLengthArray(lengthArray, lengthTypeArray);
|
| return lengthArray[CSSPrimitiveValue::UnitTypeFontSize] != 0
|
| || lengthArray[CSSPrimitiveValue::UnitTypeFontXSize] != 0
|
| || lengthArray[CSSPrimitiveValue::UnitTypeRootFontSize] != 0
|
|
|