Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>