tor-browser

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

browser_739531_sample.html (489B)


      1 <!-- originally a crash test for bug 713417
      2     https://bug713417.bugzilla.mozilla.org/attachment.cgi?id=584240 -->
      3 <!DOCTYPE html>
      4 <html>
      5 <head>
      6 <meta charset="utf-8">
      7 <script>
      8 
      9 function boom() {
     10  var w = document.getElementById("f").contentWindow;
     11  var d = w.document;
     12  d.designMode = "on";
     13  var r = d.documentElement;
     14  d.removeChild(r);
     15  document.adoptNode(r);
     16 }
     17 
     18 </script>
     19 </head>
     20 <body onload="boom();">
     21 <iframe src="browser_739531_frame.html" id="f"></iframe>
     22 </body>
     23 </html>