tor-browser

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

1005366.html (545B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <script>
      6 
      7 /*
      8 user_pref("media.mediasource.enabled", true);
      9 */
     10 
     11 function boom()
     12 {
     13    var source = new window.MediaSource();
     14    var videoElement = document.createElementNS('http://www.w3.org/1999/xhtml', 'video');
     15    videoElement.src = URL.createObjectURL(source);
     16 
     17    setTimeout(function() {
     18        var buf = source.addSourceBuffer("video/webm");
     19        buf.abort();
     20        buf.appendBuffer(new Float32Array(203));
     21    }, 0);
     22 }
     23 
     24 </script>
     25 </head>
     26 <body onload="boom();"></body>
     27 </html>