Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/embedded-content/the-video-element/video_initially_paused.html - WPT Dashboard Interop Dashboard
<!DOCTYPE HTML>
<meta charset=UTF-8>
<title>Video elements should initially be paused</title>
<link rel="match" href="video_initially_paused-ref.html">
<script src="/common/media.js"></script>
<style>
div#video {
padding: 6px 3px;
}
</style>
<p>The following video element should be paused. (All clocks at zero).</p>
<div id=video>
<script>
document.write(
"<video src='"+ getVideoURI('/media/movie_300') + "' >" +
"Your browser does not support the video element." +
"<\/video>");
</script>
</div>