tor-browser

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

406675-1.html (290B)


      1 <html>
      2 <head>
      3 <script type="text/javascript">
      4 
      5 function boom()
      6 {
      7  var textNode = document.createTextNode("\u202B" + "A B");
      8  document.body.appendChild(textNode);
      9  document.body.offsetHeight;
     10  textNode.data = "\u202B" + " C";
     11 }
     12 
     13 </script>
     14 </head>
     15 
     16 <body onload="boom();"></body>
     17 </html>