Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-image-animation/image-animation-img-paused-normal-mixed.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<title>paused, stopped and normal image animation mixed</title>
<meta charset="utf-8" />
<link rel="match" href="image-animation-img-paused-normal-mixed.tentative-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
let count = 0;
function loaded() {
count++;
if(count === 5) {
takeScreenshotDelayed(300);
}
}
</script>
<img src="../../images/anim-gr.gif" style="image-animation: paused;" onload="loaded()" />
<img src="../../images/anim-gr.gif" onload="loaded()" />
<img src="../../images/anim-gr.gif" style="image-animation: paused;" onload="loaded()" />
<img src="../../images/anim-gr.gif" style="image-animation: normal;" onload="loaded()" />
<img src="../../images/anim-gr.gif" style="image-animation: stopped;" onload="loaded()" />
</html>