| Index: third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
|
| index a45a7e32a371e51a40a19ec75479fabc788e1468..89d12b5a8d30fe828bd634134e021a8d3e71a5df 100644
|
| --- a/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/css/CSSAnimations.cpp
|
| @@ -167,7 +167,7 @@ static StringKeyframeEffectModel* createKeyframeEffectModel(
|
| startKeyframe = StringKeyframe::create();
|
| startKeyframe->setOffset(0);
|
| startKeyframe->setEasing(defaultTimingFunction);
|
| - keyframes.prepend(startKeyframe);
|
| + keyframes.push_front(startKeyframe);
|
| }
|
| RefPtr<StringKeyframe> endKeyframe = keyframes[keyframes.size() - 1];
|
| if (endKeyframe->offset() != 1) {
|
|
|