tor-browser

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

template-element-clone-into-inactive-document-crash.html (140B)


      1 <template id="t"> </template>
      2 <iframe id="i"></iframe>
      3 <script>
      4 var doc = i.contentDocument;
      5 i.remove();
      6 doc.importNode(t, true);
      7 </script>