summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-toggle/animations
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:47:29 +0000
commit0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d (patch)
treea31f07c9bcca9d56ce61e9a1ffd30ef350d513aa /testing/web-platform/tests/css/css-toggle/animations
parentInitial commit. (diff)
downloadfirefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.tar.xz
firefox-esr-0ebf5bdf043a27fd3dfb7f92e0cb63d88954c44d.zip
Adding upstream version 115.8.0esr.upstream/115.8.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-toggle/animations')
-rw-r--r--testing/web-platform/tests/css/css-toggle/animations/toggle-group-interpolation.tentative.html20
-rw-r--r--testing/web-platform/tests/css/css-toggle/animations/toggle-root-interpolation.tentative.html20
-rw-r--r--testing/web-platform/tests/css/css-toggle/animations/toggle-trigger-interpolation.tentative.html20
3 files changed, 60 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-toggle/animations/toggle-group-interpolation.tentative.html b/testing/web-platform/tests/css/css-toggle/animations/toggle-group-interpolation.tentative.html
new file mode 100644
index 0000000000..bde6c2978c
--- /dev/null
+++ b/testing/web-platform/tests/css/css-toggle/animations/toggle-group-interpolation.tentative.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<meta charset="UTF-8">
+<title>toggle-group is not animatable</title>
+<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-group-property">
+<meta name="assert" content="toggle-group is not animatable">
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/interpolation-testcommon.js"></script>
+
+<body>
+<script>
+test_not_animatable({
+ property: 'toggle-group',
+ from: 'atoggle',
+ to: 'yourtoggle',
+ underlying: 'mytoggle',
+});
+</script>
+</body>
diff --git a/testing/web-platform/tests/css/css-toggle/animations/toggle-root-interpolation.tentative.html b/testing/web-platform/tests/css/css-toggle/animations/toggle-root-interpolation.tentative.html
new file mode 100644
index 0000000000..855b7e6551
--- /dev/null
+++ b/testing/web-platform/tests/css/css-toggle/animations/toggle-root-interpolation.tentative.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<meta charset="UTF-8">
+<title>toggle-root is not animatable</title>
+<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-root-property">
+<meta name="assert" content="toggle-root is not animatable">
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/interpolation-testcommon.js"></script>
+
+<body>
+<script>
+test_not_animatable({
+ property: 'toggle-root',
+ from: 'none',
+ to: 'yourtoggle 3 at 1',
+ underlying: 'mytoggle 2',
+});
+</script>
+</body>
diff --git a/testing/web-platform/tests/css/css-toggle/animations/toggle-trigger-interpolation.tentative.html b/testing/web-platform/tests/css/css-toggle/animations/toggle-trigger-interpolation.tentative.html
new file mode 100644
index 0000000000..1ebec55ef0
--- /dev/null
+++ b/testing/web-platform/tests/css/css-toggle/animations/toggle-trigger-interpolation.tentative.html
@@ -0,0 +1,20 @@
+<!DOCTYPE html>
+<meta charset="UTF-8">
+<title>toggle-trigger is not animatable</title>
+<link rel="help" href="https://tabatkins.github.io/css-toggle/#toggle-trigger-property">
+<meta name="assert" content="toggle-trigger is not animatable">
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/css/support/interpolation-testcommon.js"></script>
+
+<body>
+<script>
+test_not_animatable({
+ property: 'toggle-trigger',
+ from: 'atoggle set 4',
+ to: 'yourtoggle set 3',
+ underlying: 'mytoggle set 2',
+});
+</script>
+</body>