tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

short.mp4.firstframe.html (486B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <head>
      4 <script type="text/javascript">
      5 function doTest() {
      6  var video = document.getElementById("v1");
      7  video.src = "../short.mp4";
      8  video.preload = "metadata";
      9  video.addEventListener("loadeddata", function() {
     10    document.documentElement.removeAttribute('class');
     11  });
     12 }
     13 window.addEventListener("MozReftestInvalidate", doTest);
     14 </script>
     15 </head>
     16 <body>
     17 <video id="v1" style="position:absolute; left:0; top:0"></video>
     18 </body>
     19 </html>