| Index: third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp b/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
|
| index 2235031dcbb72defec02f1180f4e80ddd85dd09c..2dc154dcff58f42752b4a1f7cdca41f6c41cb713 100644
|
| --- a/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/animatable/AnimatableRepeatable.cpp
|
| @@ -71,7 +71,7 @@ bool AnimatableRepeatable::interpolateLists(
|
| // interpolable.
|
| if (AnimatableValue::usesDefaultInterpolation(from, to))
|
| return false;
|
| - interpolatedValues.append(interpolate(from, to, fraction));
|
| + interpolatedValues.push_back(interpolate(from, to, fraction));
|
| }
|
| return true;
|
| }
|
|
|