tor-browser

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

transformToFragment-on-node-from-inactive-document-crash.html (353B)


      1 <!DOCTYPE html>
      2 <body>
      3 <iframe id=i></iframe>
      4 <script>
      5 var el = i.contentDocument.documentElement;
      6 i.remove()
      7 var x = new XSLTProcessor();
      8 var xsl =new DOMParser().parseFromString('<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"/>','application/xml');
      9 x.importStylesheet(xsl);
     10 x.transformToDocument(el);
     11 </script>
     12 </body>