diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html')
-rw-r--r-- | testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html b/testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html new file mode 100644 index 0000000000..af64b9e722 --- /dev/null +++ b/testing/web-platform/tests/css/css-animations/animation-delay-001-manual.html @@ -0,0 +1,67 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Animations Test: animation-delay - negative value</title> +<link rel="author" title="Nokia Inc." href="http://www.nokia.com"> +<link rel="author" title="Intel" href="http://www.intel.com"> +<link rel="reviewer" title="Zhiqiang Zhang" href="mailto:zhiqiang.zhang@intel.com"> <!-- 2015-03-18 --> +<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-delay"> +<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-name"> +<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-duration"> +<link rel="help" href="https://drafts.csswg.org/css-animations-1/#animation-timing-function"> +<meta name="flags" content="animated"> +<meta name="assert" content="When animation-delay is set to a negative time offset, + animation will execute as soon as it is applied + but act as if the animation had started the specified + time in the past."> +<style> + div { + animation-timing-function: linear; + + height: 100px; + width: 100px; + position: relative; + } + + #test-negative-delay { + animation-name: test-negative-delay; + animation-duration: 10s; + animation-delay: -5s; + + background-color: blue; + } + + #ref-no-delay { + animation-name: ref-no-delay; + animation-duration: 5s; + + background-color: yellow; + } + + @keyframes test-negative-delay { + from { + left: 150px; + } + to { + left: 0px; + } + } + + @keyframes ref-no-delay { + from { + left: 75px; + } + to { + left: 0px; + } + } +</style> +<body> + <p> + Test passes if there are a filled blue square with 'Filler Text' + and a filled yellow square with 'Filler Text', and if the two squares + start moving together from right to left as soon as the page loads. + </p> + <div id="test-negative-delay">Filler Text</div> + <div id="ref-no-delay">Filler Text</div> +</body> + |