Index: third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/phases-and-states.html |
diff --git a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/phases-and-states.html b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/phases-and-states.html |
index 5dc32066fea78e935850ee3617250216f15ac82d..22d4eb3bd379549faeba149077d40dc56bbff108 100644 |
--- a/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/phases-and-states.html |
+++ b/third_party/WebKit/LayoutTests/imported/wpt/web-animations/timing-model/animation-effects/phases-and-states.html |
@@ -73,7 +73,7 @@ |
var animation = createDiv(t).animate(null, { duration: 1, delay: -1 }); |
[ { currentTime: -2, phase: 'before' }, |
- { currentTime: -1, phase: 'before' }, |
+ { currentTime: -1, phase: 'active' }, |
{ currentTime: 0, phase: 'after' } ] |
.forEach(function(test) { |
assert_phase_at_time(animation, test.phase, test.currentTime); |
@@ -121,8 +121,7 @@ |
var animation = createDiv(t).animate(null, { duration: 1, endDelay: -2 }); |
[ { currentTime: -2, phase: 'before' }, |
- { currentTime: -1, phase: 'before' }, |
- { currentTime: 0, phase: 'after' } ] |
+ { currentTime: -1, phase: 'after' } ] |
.forEach(function(test) { |
assert_phase_at_time(animation, test.phase, test.currentTime); |
}); |
@@ -134,8 +133,8 @@ |
delay: 1, |
endDelay: -1 }); |
- [ { currentTime: 0, phase: 'before' }, |
- { currentTime: 1, phase: 'active' }, |
+ [ { currentTime: 0, phase: 'before' }, |
+ { currentTime: 1, phase: 'active' }, |
{ currentTime: 2, phase: 'after' } ] |
.forEach(function(test) { |
assert_phase_at_time(animation, test.phase, test.currentTime); |
@@ -148,9 +147,8 @@ |
delay: -1, |
endDelay: -1 }); |
- [ { currentTime: -2, phase: 'before' }, |
- { currentTime: -1, phase: 'before' }, |
- { currentTime: 0, phase: 'after' } ] |
+ [ { currentTime: -2, phase: 'before' }, |
+ { currentTime: -1, phase: 'after' } ] |
.forEach(function(test) { |
assert_phase_at_time(animation, test.phase, test.currentTime); |
}); |
@@ -162,10 +160,8 @@ |
delay: -1, |
endDelay: -2 }); |
- [ { currentTime: -3, phase: 'before' }, |
- { currentTime: -2, phase: 'before' }, |
- { currentTime: -1, phase: 'before' }, |
- { currentTime: 0, phase: 'after' } ] |
+ [ { currentTime: -3, phase: 'before' }, |
+ { currentTime: -2, phase: 'after' } ] |
.forEach(function(test) { |
assert_phase_at_time(animation, test.phase, test.currentTime); |
}); |