tor-browser

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

393661-1.html (242B)


      1 <html>
      2 <head>
      3 <style>
      4 #z:first-letter { float: right; }
      5 </style>
      6 <script>
      7 function boom()
      8 {
      9  var z = document.getElementById("z");
     10  z.firstChild.remove();
     11 }
     12 </script>
     13 </head>
     14 
     15 <body onload="boom();">
     16 
     17 <div id="z">abc</div>
     18 
     19 </body>
     20 </html>