| Index: third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html
|
| diff --git a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html
|
| index 60e70bafafb0b0e71b9d609fe10a7de848bab449..8b74c92a469f0a10762f50956506761c8a086c46 100644
|
| --- a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html
|
| +++ b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html
|
| @@ -16,10 +16,11 @@ test(function(t)
|
| // time for an animation that does not have an active timeline.
|
|
|
| var animation =
|
| - new Animation(new KeyframeEffect(createDiv(t), null, 100 * MS_PER_SEC));
|
| + new Animation(new KeyframeEffect(createDiv(t), null, 100 * MS_PER_SEC),
|
| + null);
|
|
|
| assert_equals(animation.currentTime, null, 'Intial current time');
|
| - assert_equals(animation.startTuime, null, 'Intial start time');
|
| + assert_equals(animation.startTime, null, 'Intial start time');
|
|
|
| animation.currentTime = 1000;
|
| assert_equals(animation.currentTime, 1000,
|
| @@ -46,10 +47,11 @@ test(function(t)
|
| // timeline should not clear the current time.
|
|
|
| var animation =
|
| - new Animation(new KeyframeEffect(createDiv(t), null, 100 * MS_PER_SEC));
|
| + new Animation(new KeyframeEffect(createDiv(t), null, 100 * MS_PER_SEC),
|
| + null);
|
|
|
| assert_equals(animation.currentTime, null, 'Intial current time');
|
| - assert_equals(animation.startTuime, null, 'Intial start time');
|
| + assert_equals(animation.startTime, null, 'Intial start time');
|
|
|
| animation.currentTime = 1000;
|
| assert_equals(animation.currentTime, 1000,
|
|
|