| Index: third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp
|
| index cd8b26b822b00d2c6450bad3d33012dff2e25275..1cbd70321ba96795a5c5fcbc94c67a06b691c514 100644
|
| --- a/third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/BasicShapeInterpolationFunctions.cpp
|
| @@ -107,9 +107,8 @@ BasicShapeCenterCoordinate createCoordinate(
|
| interpolableValue, nullptr, conversionData, ValueRangeAll));
|
| }
|
|
|
| -std::unique_ptr<InterpolableValue> convertCSSRadius(
|
| - const CSSPrimitiveValue* radius) {
|
| - if (!radius || radius->isValueID())
|
| +std::unique_ptr<InterpolableValue> convertCSSRadius(const CSSValue* radius) {
|
| + if (!radius || radius->isIdentifierValue())
|
| return nullptr;
|
| return unwrap(LengthInterpolationFunctions::maybeConvertCSSValue(*radius));
|
| }
|
|
|