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-video-poster-paused-normal-mixed.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="reftest-wait">
<title>paused, stopped and normal image animation mixed for video poster</title>
<meta charset="utf-8" />
<link rel="match" href="image-animation-video-poster-paused-normal-mixed-ref.html" />
<script src="/common/reftest-wait.js"></script>
<script>
takeScreenshotDelayed(300);
</script>
<style>
video {
width:20px;
height:10px;
object-fit:fill;
}
</style>
<video poster="../../images/anim-gr.gif" style="image-animation: paused;"></video>
<video poster="../../images/anim-gr.gif"></video>
<video poster="../../images/anim-gr.gif" style="image-animation: paused;"></video>
<video poster="../../images/anim-gr.gif" style="image-animation: normal;"></video>
<video poster="../../images/anim-gr.gif" style="image-animation: stopped;"></video>
</html>