track-webvtt-non-snap-to-lines-ref.html (722B)
1 <!DOCTYPE html> 2 <html class="reftest-wait"> 3 <title>Reference test for track-webvtt-non-snap-to-lines.html</title> 4 <script src="/common/reftest-wait.js"></script> 5 <script src="/common/media.js"></script> 6 <style> 7 .container { 8 position: relative; 9 display: inline-block; 10 } 11 .cue { 12 position: absolute; 13 top: 30px; 14 left: 0px; 15 font-family: sans-serif; 16 background: green; 17 color: rgba(255, 255, 255, 1); 18 font-size: 7.5px; 19 } 20 </style> 21 <div class="container"> 22 <video autoplay onplaying="this.onplaying = null; this.pause(); takeScreenshot();"> 23 <script> 24 document.currentScript.parentNode.src = getVideoURI("/media/test"); 25 </script> 26 </video> 27 <span class="cue">Bear is Coming!!!!!</span> 28 </div> 29 </html>