tor-browser

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

event_progress_noautoplay.html (1230B)


      1 <!doctype html>
      2 <html>
      3 <head>
      4  <title>{audio,video} events - progress</title>
      5  <script src="/resources/testharness.js"></script>
      6  <script src="/resources/testharnessreport.js"></script>
      7  <script src="/common/media.js"></script>
      8 </head>
      9 <body>
     10  <p><a href="https://html.spec.whatwg.org/multipage/#mediaevents">spec reference</a></p>
     11  <audio id="a" controls>
     12  </audio>
     13  <video id="v" controls>
     14  </video>
     15  <div id="log"></div>
     16  <script>
     17 test(function() {
     18  var t = async_test("setting src attribute on non-autoplay audio should trigger progress event");
     19  var a = document.getElementById("a");
     20  a.addEventListener("error", t.unreached_func());
     21  a.addEventListener("progress", t.step_func_done(), false);
     22  a.src = getAudioURI("/media/sound_5") + "?" + new Date() + Math.random();
     23 }, "audio events - progress");
     24 
     25 test(function() {
     26  var t = async_test("setting src attribute on non-autoplay video should trigger progress event");
     27  var v = document.getElementById("v");
     28  v.addEventListener("error", t.unreached_func());
     29  v.addEventListener("progress", t.step_func_done(), false);
     30  v.src = getVideoURI("/media/movie_5") + "?" + new Date() + Math.random();
     31 }, "video events - progress");
     32  </script>
     33 </body>
     34 </html>