tor-browser

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

buffer-source-duration-1.html (393B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <script>
      4 const rate = 44100;
      5 var context = new window.OfflineAudioContext(1, 512, rate);
      6 var buffer = context.createBuffer(1, 128, rate);
      7 var source = context.createBufferSource();
      8 source.buffer = buffer;
      9 source.start(0, 0, 86400);
     10 context.startRendering().
     11  then(function() {
     12    document.documentElement.removeAttribute("class");
     13  });
     14 </script>