tor-browser

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

345837-1.xhtml (564B)


      1 <html xmlns="http://www.w3.org/1999/xhtml" class="reftest-wait">
      2 
      3 <head>
      4 <script>
      5 <![CDATA[
      6 
      7 function foo()
      8 {
      9  var r = document.createRange(); 
     10  r.setStart(document.getElementById("a"), 0); 
     11  r.setEnd(document.getElementById("b"), 0); 
     12  window.getSelection().addRange(r);
     13 
     14  var everything = document.getElementById("everything");
     15  everything.remove();
     16  
     17  document.documentElement.removeAttribute("class");
     18 }
     19 
     20 ]]>
     21 </script>
     22 </head>
     23 
     24 <body onload="setTimeout(foo, 30);">
     25 
     26 <div id="everything">
     27 
     28 <div id="a">
     29  <span id="b" />
     30 </div>
     31 
     32 </div>
     33 
     34 </body>
     35 </html>