From 59203c63bb777a3bacec32fb8830fba33540e809 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 12 Jun 2024 07:35:29 +0200 Subject: Adding upstream version 127.0. Signed-off-by: Daniel Baumann --- .../scroll-animations/css/animation-shorthand.html | 30 ---------------------- 1 file changed, 30 deletions(-) (limited to 'testing/web-platform/tests/scroll-animations') diff --git a/testing/web-platform/tests/scroll-animations/css/animation-shorthand.html b/testing/web-platform/tests/scroll-animations/css/animation-shorthand.html index b7d5947a21..cb63137f5c 100644 --- a/testing/web-platform/tests/scroll-animations/css/animation-shorthand.html +++ b/testing/web-platform/tests/scroll-animations/css/animation-shorthand.html @@ -73,36 +73,6 @@ test((t) => { assert_equals(getComputedStyle(target).animation, ''); }, 'Animation shorthand can not represent non-initial timelines (computed)'); -test((t) => { - t.add_cleanup(() => { - target.style = ''; - }); - - target.style.animation = 'anim 1s'; - target.style.animationDelayEnd = '42s'; - assert_equals(target.style.animation, ''); - assert_equals(target.style.animationName, 'anim'); - assert_equals(target.style.animationDuration, '1s'); - - target.style.animationDelayEnd = '0s, 0s'; - assert_equals(target.style.animation, ''); -}, 'Animation shorthand can not represent non-initial animation-delay-end (specified)'); - -test((t) => { - t.add_cleanup(() => { - target.style = ''; - }); - - target.style.animation = 'anim 1s'; - target.style.animationDelayEnd = '42s'; - assert_equals(getComputedStyle(target).animation, ''); - assert_equals(getComputedStyle(target).animationName, 'anim'); - assert_equals(getComputedStyle(target).animationDuration, '1s'); - - target.style.animationDelayEnd = '0s, 0s'; - assert_equals(getComputedStyle(target).animation, ''); -}, 'Animation shorthand can not represent non-initial animation-delay-end (computed)'); - test((t) => { t.add_cleanup(() => { target.style = ''; -- cgit v1.2.3