Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animations/set-the-animation-start-time.html

Issue 2086283003: Update web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge branch 'master' into wpt_import Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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,

Powered by Google App Engine
This is Rietveld 408576698