| Index: third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| index 466c1b5c5e8a6c40f8a41944edd40a32d2aa23bb..23404fa5f8e0ec7fc4f1a7164c7404d99e857c40 100644
|
| --- a/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/PathInterpolationFunctions.cpp
|
| @@ -122,9 +122,10 @@ InterpolationValue PathInterpolationFunctions::maybeConvertNeutral(
|
| UnderlyingPathSegTypesChecker::create(underlying));
|
| std::unique_ptr<InterpolableList> result =
|
| InterpolableList::create(PathComponentIndexCount);
|
| - result->set(PathArgsIndex, toInterpolableList(*underlying.interpolableValue)
|
| - .get(PathArgsIndex)
|
| - ->cloneAndZero());
|
| + result->set(PathArgsIndex,
|
| + toInterpolableList(*underlying.interpolableValue)
|
| + .get(PathArgsIndex)
|
| + ->cloneAndZero());
|
| result->set(PathNeutralIndex, InterpolableNumber::create(1));
|
| return InterpolationValue(std::move(result),
|
| underlying.nonInterpolableValue.get());
|
|
|