tor-browser

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

audiocontext-after-xhr.html (274B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4    <script>
      5      document.addEventListener('DOMContentLoaded', () => {
      6        const xhr = new XMLHttpRequest()
      7        xhr.open('G', '', false)
      8        xhr.send()
      9        window.ac = new AudioContext()
     10      })
     11    </script>
     12 </head>
     13 </html>