tor-browser

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

421239-1.html (364B)


      1 <!DOCTYPE html>
      2 <html class="reftest-wait">
      3 <head>
      4  <style>
      5    div#a { margin: 100px 0px 100px 0px;  }
      6  </style>
      7  <script>
      8  function boom()
      9  {
     10    var a = document.getElementById("a");
     11    a.firstChild.remove();
     12    document.documentElement.className = "";
     13  }
     14  </script>
     15 </head>
     16 <body onload="boom();">
     17  <div id="a">a</div>
     18  <div>b</div>
     19 </body>
     20 </html>