Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
            - /web-animations/web-animations-print.html - WPT Dashboard Interop Dashboard
 
<!DOCTYPE HTML>
<html>
<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>