Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /avif/animated-avif-timeout.html - WPT Dashboard Interop Dashboard
<html class="reftest-wait">
<title>Animated AVIF: Second frame displays quickly, replacing red with green.</title>
<link rel="match" href="animated-avif-timeout-ref.html"/>
<img src=../images/animated-avif.avif onload="loaded()" style="height:500px;image-rendering:crisp-edges;"/>
<script>
function loaded() {
setTimeout(function() {
document.documentElement.classList.remove("reftest-wait");
}, 1000);
}
</script>