diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 00:47:55 +0000 |
commit | 26a029d407be480d791972afb5975cf62c9360a6 (patch) | |
tree | f435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/css/css-animations/animation-name-002-manual.html | |
parent | Initial commit. (diff) | |
download | firefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz firefox-26a029d407be480d791972afb5975cf62c9360a6.zip |
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/css/css-animations/animation-name-002-manual.html')
-rw-r--r-- | testing/web-platform/tests/css/css-animations/animation-name-002-manual.html | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-animations/animation-name-002-manual.html b/testing/web-platform/tests/css/css-animations/animation-name-002-manual.html new file mode 100644 index 0000000000..0315bcc136 --- /dev/null +++ b/testing/web-platform/tests/css/css-animations/animation-name-002-manual.html @@ -0,0 +1,40 @@ +<!DOCTYPE html> +<meta charset="utf-8"> +<title>CSS Animations Test: animation-name matchs keyframes at-rule</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-05-06 --> +<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"> +<meta name="flags" content="animated"> +<meta name="assert" content="When animation-name is set to refer to a keyframe at-rule + that provides the property values for the animation, + animation will execute."> +<style> + div { + animation-name: sample; + animation-duration: 10s; + + background-color: blue; + height: 100px; + width: 100px; + position: relative; + } + + @keyframes sample { + from { + left: 150px; + } + to { + left: 0px; + } + } +</style> +<body> + <p> + Test passes if there is a filled blue square with 'Filler Text', + which starts moving from right to left on the page load. + </p> + <div>Filler Text</div> +</body> + |