video_initially_paused.html (660B)
1 <!DOCTYPE HTML> 2 <meta charset=UTF-8> 3 <title>Video elements should initially be paused</title> 4 <link rel="match" href="video_initially_paused-ref.html"> 5 <link rel="author" title="Microsoft" href="http://www.microsoft.com/"> 6 <link rel="help" href="https://html.spec.whatwg.org/multipage/#dom-media-paused"> 7 <script src="/common/media.js"></script> 8 <style> 9 div#video { 10 padding: 6px 3px; 11 } 12 </style> 13 <p>The following video element should be paused. (All clocks at zero).</p> 14 <div id=video> 15 <script> 16 document.write( 17 "<video src='"+ getVideoURI('/media/movie_300') + "' >" + 18 "Your browser does not support the video element." + 19 "<\/video>"); 20 </script> 21 </div>