tor-browser

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

audio-play-in-inactive-document-crash.html (177B)


      1 <audio id="a"></audio>
      2 <iframe id="i"></iframe>
      3 <script>
      4 var a = document.getElementById("a");
      5 i.contentDocument.documentElement.appendChild(a);
      6 i.remove();
      7 a.play();
      8 </script>