tor-browser

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

933156.html (491B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <script>
      4 function boom()
      5 {
      6  var ac = new window.AudioContext();
      7 
      8  var panner = ac.createPanner();
      9  panner.setPosition(8, 0.7643051305237005, 0.10292575673733972);
     10 
     11  var oscillator = ac.createOscillator();
     12  oscillator.connect(panner);
     13  oscillator.start(0);
     14 
     15  setTimeout(function() {
     16    panner.panningModel = 'equalpower';
     17    oscillator.stop(0);
     18    document.documentElement.removeAttribute("class");
     19  }, 0.5);
     20 }
     21 boom();
     22 </script>
     23 </html>