tor-browser

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

390976-1.html (388B)


      1 <html>
      2 
      3 <head>
      4 <script>
      5 function boom()
      6 {
      7  var aaa = document.getElementById("aaa");
      8  var bbb = document.getElementById("bbb");
      9  aaa.parentNode.insertBefore(bbb, aaa);
     10 }
     11 </script>
     12 </head>
     13 
     14 <body onload="boom();">
     15 
     16 <div><span><span style="display: table-caption;"></span><span id="aaa"><div></div></span></span></div>
     17 
     18 <b id="bbb" style="display: table-caption;"></b>
     19 
     20 </body>
     21 
     22 </html>