tor-browser

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

444484-1.html (453B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 
      5 <style type="text/css">
      6 
      7 body:first-letter { float: right; }
      8 
      9 </style>
     10 
     11 <script type="text/javascript">
     12 
     13 function boom()
     14 {
     15  var t = document.body.firstChild;
     16  var se = document.getElementById("se");
     17  se.appendChild(t); // !!!
     18  document.body.appendChild(se);
     19  se.appendChild(document.createTextNode(" "));
     20 }
     21 
     22 </script>
     23 </head>
     24 
     25 <body onload="boom();">&#xFEB7;
     26 <div id="se" style="display: none;"></div></body>
     27 </html>