| Index: third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| index e40e294ac45cb45a2d73d3c31a4086c30ef2a584..01931e7296f13c5c8a7e03c8f8c723eac288cd36 100644
|
| --- a/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/CSSLengthInterpolationType.cpp
|
| @@ -78,7 +78,7 @@ InterpolationValue CSSLengthInterpolationType::maybeConvertLength(const Length&
|
| values->set(CSSPrimitiveValue::UnitTypePixels, InterpolableNumber::create(pixelsAndPercent.pixels / zoom));
|
| values->set(CSSPrimitiveValue::UnitTypePercentage, InterpolableNumber::create(pixelsAndPercent.percent));
|
|
|
| - return InterpolationValue(std::move(values), CSSLengthNonInterpolableValue::create(length.hasPercent()));
|
| + return InterpolationValue(std::move(values), CSSLengthNonInterpolableValue::create(length.isPercentOrCalc()));
|
| }
|
|
|
| std::unique_ptr<InterpolableList> CSSLengthInterpolationType::createNeutralInterpolableValue()
|
|
|