tor-browser

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

370862-1.xhtml (498B)


      1 <html xmlns="http://www.w3.org/1999/xhtml" class="test-wait">
      2 
      3 <head>
      4 <script>
      5 function boom()
      6 {
      7  var math = document.getElementById("math");
      8  var div = document.getElementById("div")
      9 
     10  math.setAttribute("color", "g");
     11  document.body.appendChild(div);
     12 
     13  document.documentElement.removeAttribute("class");
     14 }
     15 </script>
     16 </head>
     17 
     18 <body onload="setTimeout(boom, 30);">
     19 
     20 <div id="div">
     21 
     22 <mo xmlns='http://www.w3.org/1998/Math/MathML'>+<math id="math"><mn>1</mn></math></mo>
     23 
     24 </div>
     25 
     26 </body>
     27 </html>