| Index: third_party/WebKit/Source/core/animation/ListInterpolationFunctions.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/ListInterpolationFunctions.cpp b/third_party/WebKit/Source/core/animation/ListInterpolationFunctions.cpp
|
| index f2b59c3dbf8a8665c8aa5b74eb1e44487ebef193..c1f90ddd62ce49c3edc606149615946215775afc 100644
|
| --- a/third_party/WebKit/Source/core/animation/ListInterpolationFunctions.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/ListInterpolationFunctions.cpp
|
| @@ -130,9 +130,9 @@ static void repeatToLength(InterpolationValue& value, size_t length) {
|
| Vector<RefPtr<NonInterpolableValue>> newNonInterpolableValues(length);
|
| for (size_t i = length; i-- > 0;) {
|
| newInterpolableList->set(
|
| - i, i < currentLength
|
| - ? std::move(interpolableList.getMutable(i))
|
| - : interpolableList.get(i % currentLength)->clone());
|
| + i,
|
| + i < currentLength ? std::move(interpolableList.getMutable(i))
|
| + : interpolableList.get(i % currentLength)->clone());
|
| newNonInterpolableValues[i] = nonInterpolableList.get(i % currentLength);
|
| }
|
| value.interpolableValue = std::move(newInterpolableList);
|
|
|