1
0
Fork 0
firefox/testing/web-platform/mozilla/tests/web-animations/web-animations-print.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
521 B
HTML

<!DOCTYPE HTML>
<html>
<link rel="help" href="https://drafts.csswg.org/web-animations/">
<link rel="match" href="web-animations-print-ref.html">
<title>Web animation</title>
<p id="anim" style="color: olive">blue with animation support; olive without</p>
<script>
const animationData = [
{"color":"#0000FF"},
{"color":"#0000FF"}
];
const animationTiming = {
"duration":1,
"iterations":Infinity
};
let element = document.getElementById("anim");
element.animate(animationData, animationTiming);
</script>