tor-browser

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

907986-4.html (450B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <script>
      4 var context = new window.OfflineAudioContext(1, 100, 48000);
      5 context.oncomplete = function(e) {
      6    document.documentElement.removeAttribute("class");
      7 };
      8 var panner = context.createPanner();
      9 panner.setPosition(0, 3, 0);  // directly overhead
     10 panner.connect(context.destination);
     11 var source = context.createOscillator();
     12 source.connect(panner);
     13 source.start(0);
     14 context.startRendering();
     15 </script>