Update web-platform-tests to revision 6d7f862e4afa43d45bb3f800c457e9f746cd8730

This commit is contained in:
WPT Sync Bot 2020-03-06 08:19:18 +00:00
parent ca25e18791
commit 5b34e16ada
93 changed files with 2141 additions and 1321 deletions

View file

@ -23,7 +23,6 @@ test(t => {
div.style.animationDuration = '4s';
div.style.animationDelay = '6s';
getComputedStyle(div).animationDuration;
assert_equals(
animation.effect.getTiming().duration,
@ -61,7 +60,6 @@ test(t => {
div.style.animationDirection = 'alternate';
div.style.animationDelay = '6s';
div.style.animationFillMode = 'both';
getComputedStyle(div).animationIterationCount;
assert_equals(
animation.effect.getTiming().iterations,
@ -97,7 +95,6 @@ test(t => {
div.style.animationFillMode = 'forwards';
div.style.animationIterationCount = '6';
div.style.animationDirection = 'reverse';
getComputedStyle(div).animationDelay;
assert_equals(
animation.effect.getTiming().delay,
@ -132,7 +129,6 @@ test(t => {
}, 'Negative iteration count should cause an error to be thrown');
div.style.animationDuration = '4s';
getComputedStyle(div).animationDuration;
assert_equals(
animation.effect.getTiming().duration,
@ -155,7 +151,6 @@ test(t => {
div.style.animationDuration = '6s';
div.style.animationTimingFunction = 'ease-in';
getComputedStyle(div).animationDuration;
assert_equals(
animation.effect.getTiming().easing,

View file

@ -158,7 +158,6 @@ test(t => {
div.style.animationDelay = '8s';
div.style.animationFillMode = 'both';
div.style.animationPlayState = 'paused';
getComputedStyle(div).animationDuration;
// Update the keyframes
keyframesRule.deleteRule(0);