mirror of
https://github.com/servo/servo.git
synced 2025-08-12 08:55:32 +01:00
Update web-platform-tests to revision 1268bd5901289acc95b1a576f108bdf382d82e44
This commit is contained in:
parent
f183d66217
commit
292a12e545
261 changed files with 5513 additions and 966 deletions
|
@ -89,7 +89,7 @@ promise_test(async t => {
|
|||
"The start time is null in Idle state.");
|
||||
animation.play();
|
||||
// Verify initial start and current times in Pending state.
|
||||
assert_equals(animation.currentTime, 0,
|
||||
assert_equals(animation.currentTime, animation.timeline.currentTime,
|
||||
"The current time is a hold time in Pending state.");
|
||||
assert_equals(animation.startTime, null,
|
||||
"The start time is null in Pending state.");
|
||||
|
@ -125,12 +125,14 @@ promise_test(async t => {
|
|||
animation1.play();
|
||||
animation2.play();
|
||||
// Verify initial start and current times in Pending state.
|
||||
assert_equals(animation1.currentTime, 0,
|
||||
"The current time is a hold time in Pending state.");
|
||||
assert_equals(animation1.currentTime, timeline.currentTime,
|
||||
"The current time corresponds to the scroll position of the scroller" +
|
||||
" in Pending state.");
|
||||
assert_equals(animation1.startTime, null,
|
||||
"The start time is null in Pending state.");
|
||||
assert_equals(animation2.currentTime, 0,
|
||||
"The current time is a hold time in Pending state.");
|
||||
assert_equals(animation2.currentTime, timeline.currentTime,
|
||||
"The current time corresponds to the scroll position of the scroller" +
|
||||
" in Pending state.");
|
||||
assert_equals(animation2.startTime, null,
|
||||
"The start time is null in Pending state.");
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue