Update web-platform-tests to revision f7e2ea2c50c4d23549d07cd24c7a96fc3f203d96

This commit is contained in:
WPT Sync Bot 2020-03-12 12:52:18 +00:00
parent 4b1bb895a3
commit 33357a82e4
175 changed files with 1667 additions and 4935 deletions

View file

@ -42,9 +42,9 @@ promise_test(async t => {
const animA = div.animate({margin: ["100px","100px"]}, 100000);
assert_equals(getComputedStyle(div).marginLeft, '100px');
div.style.animation = 'margin50 100s';
assert_equals(getComputedStyle(div).marginLeft, '50px');
// Wait for animation starts
await waitForAnimationFrames(2);
await animA.ready;
await waitForAnimationFrames(1);
assert_equals(getComputedStyle(div).marginLeft, '100px',
"A higher-priority animation is not overriden by a more recent"
+ "one.");