tor-browser

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

612213.html (474B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4 <script>
      5 function boom()
      6 {
      7  var v = document.createElementNS("http://www.w3.org/1999/xhtml", "video");
      8  document.body.appendChild(v);
      9  var s = document.createElementNS("http://www.w3.org/1999/xhtml", "span");
     10  s.setAttribute("style", "filter: url(#g);");
     11  document.body.appendChild(s);
     12 
     13  document.documentElement.removeAttribute("class");
     14 }
     15 </script>
     16 </head>
     17 <body id="g" onload="setTimeout(boom, 0);"></body></html>