diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-12 05:43:14 +0000 |
commit | 8dd16259287f58f9273002717ec4d27e97127719 (patch) | |
tree | 3863e62a53829a84037444beab3abd4ed9dfc7d0 /testing/web-platform/tests/css/css-animations | |
parent | Releasing progress-linux version 126.0.1-1~progress7.99u1. (diff) | |
download | firefox-8dd16259287f58f9273002717ec4d27e97127719.tar.xz firefox-8dd16259287f58f9273002717ec4d27e97127719.zip |
Merging upstream version 127.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-animations')
8 files changed, 0 insertions, 169 deletions
diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-computed.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-computed.tentative.html deleted file mode 100644 index 77f9670638..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-computed.tentative.html +++ /dev/null @@ -1,12 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-end"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/computed-testcommon.js"></script> -<div id="target"></div> -<script> -test_computed_value("animation-delay-end", "initial", "0s"); -test_computed_value("animation-delay-end", "-500ms", "-0.5s"); -test_computed_value("animation-delay-end", "calc(2 * 3s)", "6s"); -test_computed_value("animation-delay-end", "20s, 10s"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-invalid.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-invalid.tentative.html deleted file mode 100644 index 7cabd4e8e5..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-invalid.tentative.html +++ /dev/null @@ -1,29 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-end"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/parsing-testcommon.js"></script> -<script> -test_invalid_value("animation-delay-end", "infinite"); -test_invalid_value("animation-delay-end", "0"); -test_invalid_value("animation-delay-end", "1s 2s"); -test_invalid_value("animation-delay-end", "1s / 2s"); -test_invalid_value("animation-delay-end", "100px"); -test_invalid_value("animation-delay-end", "100%"); - -test_invalid_value("animation-delay-end", "peek 50%"); -test_invalid_value("animation-delay-end", "50% contain"); -test_invalid_value("animation-delay-end", "50% cover"); -test_invalid_value("animation-delay-end", "50% entry"); -test_invalid_value("animation-delay-end", "50% enter"); -test_invalid_value("animation-delay-end", "50% exit"); -test_invalid_value("animation-delay-end", "contain contain"); -test_invalid_value("animation-delay-end", "auto"); -test_invalid_value("animation-delay-end", "none"); -test_invalid_value("animation-delay-end", "cover 50% enter 50%"); -test_invalid_value("animation-delay-end", "cover 100px"); -test_invalid_value("animation-delay-end", "cover"); -test_invalid_value("animation-delay-end", "contain"); -test_invalid_value("animation-delay-end", "enter"); -test_invalid_value("animation-delay-end", "exit"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-valid.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-valid.tentative.html deleted file mode 100644 index 162c781bb0..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-end-valid.tentative.html +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-end"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/parsing-testcommon.js"></script> -<script> -test_valid_value("animation-delay-end", "-5ms"); -test_valid_value("animation-delay-end", "0s"); -test_valid_value("animation-delay-end", "10s"); -test_valid_value("animation-delay-end", "20s, 10s"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand-computed.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand-computed.html deleted file mode 100644 index 0a1eb96041..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand-computed.html +++ /dev/null @@ -1,16 +0,0 @@ -<!DOCTYPE html> -<title>animation-delay shorthand (computed values)</title> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/computed-testcommon.js"></script> -<div id="target"></div> -<script> -test_computed_value("animation-delay", "1s"); -test_computed_value("animation-delay", "-1s"); -test_computed_value("animation-delay", "1s 2s"); -test_computed_value("animation-delay", "1s, 2s"); -test_computed_value("animation-delay", "1s 2s, 3s"); -test_computed_value("animation-delay", "1s, 2s 3s"); -test_computed_value("animation-delay", "1s, 2s, 3s"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand.html deleted file mode 100644 index 5c74a4d8e4..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-shorthand.html +++ /dev/null @@ -1,49 +0,0 @@ -<!DOCTYPE html> -<title>animation-delay shorthand</title> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/shorthand-testcommon.js"></script> -<script src="/css/support/parsing-testcommon.js"></script> -<script> -test_valid_value("animation-delay", "1s"); -test_valid_value("animation-delay", "-1s"); -test_valid_value("animation-delay", "1s 2s"); -test_valid_value("animation-delay", "1s, 2s"); -test_valid_value("animation-delay", "1s 2s, 3s"); -test_valid_value("animation-delay", "1s, 2s 3s"); -test_valid_value("animation-delay", "1s, 2s, 3s"); - -test_invalid_value("animation-delay", "1s 2s 3s"); -test_invalid_value("animation-delay", "0s, 1s 2s 3s"); -test_invalid_value("animation-delay", "1s / 2s"); -test_invalid_value("animation-delay", "1s, 2px"); -test_invalid_value("animation-delay", "#ff0000"); -test_invalid_value("animation-delay", "red"); -test_invalid_value("animation-delay", "thing"); -test_invalid_value("animation-delay", "thing 0%"); -test_invalid_value("animation-delay", "thing 42%"); -test_invalid_value("animation-delay", "thing 100%"); -test_invalid_value("animation-delay", "thing 100px"); -test_invalid_value("animation-delay", "100% thing"); - -test_shorthand_value('animation-delay', '1s 2s', { - 'animation-delay-start': '1s', - 'animation-delay-end': '2s', -}); - -test_shorthand_value('animation-delay', '1s', { - 'animation-delay-start': '1s', - 'animation-delay-end': '0s', -}); - -test_shorthand_value('animation-delay', '1s 2s, 3s 4s', { - 'animation-delay-start': '1s, 3s', - 'animation-delay-end': '2s, 4s', -}); - -test_shorthand_value('animation-delay', '1s 2s, 3s, 4s 5s', { - 'animation-delay-start': '1s, 3s, 4s', - 'animation-delay-end': '2s, 0s, 5s', -}); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-computed.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-computed.tentative.html deleted file mode 100644 index bfb89d0267..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-computed.tentative.html +++ /dev/null @@ -1,12 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-start"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/computed-testcommon.js"></script> -<div id="target"></div> -<script> -test_computed_value("animation-delay-start", "initial", "0s"); -test_computed_value("animation-delay-start", "-500ms", "-0.5s"); -test_computed_value("animation-delay-start", "calc(2 * 3s)", "6s"); -test_computed_value("animation-delay-start", "20s, 10s"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-invalid.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-invalid.tentative.html deleted file mode 100644 index bff31f3789..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-invalid.tentative.html +++ /dev/null @@ -1,29 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-start"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/parsing-testcommon.js"></script> -<script> -test_invalid_value("animation-delay-start", "infinite"); -test_invalid_value("animation-delay-start", "0"); -test_invalid_value("animation-delay-start", "1s 2s"); -test_invalid_value("animation-delay-start", "1s / 2s"); -test_invalid_value("animation-delay-start", "100px"); -test_invalid_value("animation-delay-start", "100%"); - -test_invalid_value("animation-delay-start", "peek 50%"); -test_invalid_value("animation-delay-start", "50% contain"); -test_invalid_value("animation-delay-start", "50% cover"); -test_invalid_value("animation-delay-start", "50% entry"); -test_invalid_value("animation-delay-start", "50% enter"); -test_invalid_value("animation-delay-start", "50% exit"); -test_invalid_value("animation-delay-start", "contain contain"); -test_invalid_value("animation-delay-start", "auto"); -test_invalid_value("animation-delay-start", "none"); -test_invalid_value("animation-delay-start", "cover 50% enter 50%"); -test_invalid_value("animation-delay-start", "cover 100px"); -test_invalid_value("animation-delay-start", "cover"); -test_invalid_value("animation-delay-start", "contain"); -test_invalid_value("animation-delay-start", "enter"); -test_invalid_value("animation-delay-start", "exit"); -</script> diff --git a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-valid.tentative.html b/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-valid.tentative.html deleted file mode 100644 index f52286444e..0000000000 --- a/testing/web-platform/tests/css/css-animations/parsing/animation-delay-start-valid.tentative.html +++ /dev/null @@ -1,11 +0,0 @@ -<!DOCTYPE html> -<link rel="help" href="https://drafts.csswg.org/scroll-animations-1/#propdef-animation-delay-start"> -<script src="/resources/testharness.js"></script> -<script src="/resources/testharnessreport.js"></script> -<script src="/css/support/parsing-testcommon.js"></script> -<script> -test_valid_value("animation-delay-start", "-5ms"); -test_valid_value("animation-delay-start", "0s"); -test_valid_value("animation-delay-start", "10s"); -test_valid_value("animation-delay-start", "20s, 10s"); -</script> |