tor-browser

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

template-content-in-inactive-document-crash.html (170B)


      1 <iframe id="i"></iframe>
      2 <script>
      3 var t = i.contentDocument.createElement("template");
      4 i.contentDocument.documentElement.appendChild(t);
      5 i.remove();
      6 t.content;
      7 </script>