| Index: third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp b/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
|
| index 62a092697d96967a1b77b934ce46596706fb4f1c..c8253a5bf8c45baf74cab58fa09e79c3b6ba53f8 100644
|
| --- a/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
|
| +++ b/third_party/WebKit/Source/core/animation/AnimationTimelineTest.cpp
|
| @@ -290,14 +290,16 @@ TEST_F(AnimationAnimationTimelineTest, SetCurrentTime) {
|
| TEST_F(AnimationAnimationTimelineTest, PauseForTesting) {
|
| float seekTime = 1;
|
| timing.fillMode = Timing::FillMode::FORWARDS;
|
| - KeyframeEffect* anim1 = KeyframeEffect::create(
|
| - element.get(), AnimatableValueKeyframeEffectModel::create(
|
| - AnimatableValueKeyframeVector()),
|
| - timing);
|
| - KeyframeEffect* anim2 = KeyframeEffect::create(
|
| - element.get(), AnimatableValueKeyframeEffectModel::create(
|
| - AnimatableValueKeyframeVector()),
|
| - timing);
|
| + KeyframeEffect* anim1 =
|
| + KeyframeEffect::create(element.get(),
|
| + AnimatableValueKeyframeEffectModel::create(
|
| + AnimatableValueKeyframeVector()),
|
| + timing);
|
| + KeyframeEffect* anim2 =
|
| + KeyframeEffect::create(element.get(),
|
| + AnimatableValueKeyframeEffectModel::create(
|
| + AnimatableValueKeyframeVector()),
|
| + timing);
|
| Animation* animation1 = timeline->play(anim1);
|
| Animation* animation2 = timeline->play(anim2);
|
| timeline->pauseAnimationsForTesting(seekTime);
|
|
|