tor-browser

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

audio-appendChild-to-inactive-document-crash.html (145B)


      1 <iframe id=i></iframe>
      2 <script>
      3 var doc = i.contentDocument.cloneNode();
      4 i.remove();
      5 doc.appendChild(document.createElement("audio"));
      6 </script>