tor-browser

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

398101-1.html (388B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <script>
      5 
      6 function boom()
      7 {
      8  var c = document.getElementById("c");
      9  var space = document.createTextNode(" ");
     10  c.parentNode.insertBefore(space, c);
     11 }
     12 
     13 </script>
     14 </head>
     15 <body style="font-family: monospace;" onload="boom();">
     16 
     17 <div style="width: 3ch; border: 1px solid orange;">
     18  <span>a</span> <span>b</span><span id="c">c</span>
     19 </div>
     20 
     21 </body>
     22 </html>