tor-browser

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

970710.html (738B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 
      6 <script>
      7 
      8 var text =
      9    "B" +
     10    "C" +
     11    "D" +
     12    "E" +
     13    "F" +
     14    "\u0643" +
     15    "\u0002" +
     16    "G" +
     17    "\u202D" +
     18    "H" +
     19    "I" +
     20    " " +
     21    "\u0007" +
     22    "";
     23 
     24 function boom()
     25 {
     26    var math = document.createElementNS("http://www.w3.org/1998/Math/MathML", "math");
     27    var mover = document.createElementNS("http://www.w3.org/1998/Math/MathML", "mover");
     28    document.body.appendChild(math);
     29    math.appendChild(mover);
     30    var textNode = document.createTextNode(text);
     31    mover.appendChild(textNode);
     32    document.body.style.display = "table-row-group";
     33    document.body.style.textAlign = "justify";
     34 }
     35 
     36 </script>
     37 </head>
     38 
     39 <body onload="boom();"></body>
     40 </html>