tor-browser

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

430374.html (674B)


      1 <html>
      2 <head>
      3 <script type="text/javascript">
      4 
      5 function boom()
      6 {
      7  var odiv = document.createElement("div");
      8  odiv.style.height = "30px";
      9  var idiv = document.createElement("div");
     10  idiv.style.columnWidth = "1px";
     11  var table = document.createElement("TABLE");
     12  var x = document.createTextNode("x");
     13  table.appendChild(x);
     14  var tr = document.createElement("TR");
     15  var td = document.createElement("TD");
     16  tr.appendChild(td);
     17  table.appendChild(tr);
     18  idiv.appendChild(table);
     19  odiv.appendChild(idiv);
     20  document.body.appendChild(odiv);
     21  
     22  document.body.offsetHeight;
     23  
     24  td.style.fontFamily = "X";
     25 }
     26 
     27 </script>
     28 </head>
     29 
     30 <body onload="boom();"></body>
     31 </html>