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.tentative.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<title>pausing animated image for img</title>
<link rel="help" href="https://webplatform.design/projects/image-animation/image-animation-property/spec/overview">
<meta charset="utf-8" />
<link rel="match" href="image-animation-img-paused.tentative-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
let count = 0;
function loaded() {
count++;
if(count === 2) {
takeScreenshotDelayed(300);
}
}
</script>
<style>
img {
image-animation: paused;
}
</style>
<img src="../../images/anim-gr.gif" onload="loaded()" />
<img src="../../images/anim-gr.png" onload="loaded()" />
</html>