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-easing | |
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-easing')
-rw-r--r-- | testing/web-platform/tests/css/css-easing/WEB_FEATURES.yml | 4 | ||||
-rw-r--r-- | testing/web-platform/tests/css/css-easing/linear-timing-functions-output.html (renamed from testing/web-platform/tests/css/css-easing/linear-timing-functions-output.tentative.html) | 2 | ||||
-rw-r--r-- | testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.html (renamed from testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.tentative.html) | 5 |
3 files changed, 9 insertions, 2 deletions
diff --git a/testing/web-platform/tests/css/css-easing/WEB_FEATURES.yml b/testing/web-platform/tests/css/css-easing/WEB_FEATURES.yml new file mode 100644 index 0000000000..c17b6206c5 --- /dev/null +++ b/testing/web-platform/tests/css/css-easing/WEB_FEATURES.yml @@ -0,0 +1,4 @@ +features: +- name: linear-easing + files: + - linear-timing-* diff --git a/testing/web-platform/tests/css/css-easing/linear-timing-functions-output.tentative.html b/testing/web-platform/tests/css/css-easing/linear-timing-functions-output.html index 82ea469052..ef157e2e28 100644 --- a/testing/web-platform/tests/css/css-easing/linear-timing-functions-output.tentative.html +++ b/testing/web-platform/tests/css/css-easing/linear-timing-functions-output.html @@ -2,7 +2,7 @@ <meta charset=utf-8> <meta name="assert" content="This test checks the output of linear timing functions" /> <title>Tests for the output of linear timing functions</title> -<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/6533"> +<link rel="help" href="https://drafts.csswg.org/css-easing-2/#the-linear-easing-function"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> <script src="support/util.js"></script> diff --git a/testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.tentative.html b/testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.html index 99b680d0bd..2d1baea4eb 100644 --- a/testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.tentative.html +++ b/testing/web-platform/tests/css/css-easing/linear-timing-functions-syntax.html @@ -3,7 +3,7 @@ <head> <meta charset="utf-8"> <title>CSS Easing: getComputedStyle().animationTimingFunction with linear(...)</title> -<link rel="help" href="https://github.com/w3c/csswg-drafts/pull/6533"> +<link rel="help" href="https://drafts.csswg.org/css-easing-2/#the-linear-easing-function"> <meta name="assert" content="animation-timing-function: linear(...) parsing tests"> <script src="/resources/testharness.js"></script> <script src="/resources/testharnessreport.js"></script> @@ -34,6 +34,9 @@ test_computed_value("animation-timing-function", "linear(0 calc(min(50%, 60%)), test_computed_value("animation-timing-function", "linear(0 0% 50%, 1 50% 100%)", "linear(0 0%, 0 50%, 1 50%, 1 100%)"); test_computed_value("animation-timing-function", "linear(0, 0.5 25% 75%, 1 100% 100%)", "linear(0 0%, 0.5 25%, 0.5 75%, 1 100%, 1 100%)"); test_computed_value("animation-timing-function", "linear(0, 1.3, 1, 0.92, 1, 0.99, 1, 0.998, 1 100% 100%)", "linear(0 0%, 1.3 12.5%, 1 25%, 0.92 37.5%, 1 50%, 0.99 62.5%, 1 75%, 0.998 87.5%, 1 100%, 1 100%)"); + +test_computed_value("animation-timing-function", "linear(0, 0 40%, 1, 0.5, 1)", "linear(0 0%, 0 40%, 1 60%, 0.5 80%, 1 100%)"); + </script> </body> </html> |