tor-browser

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

382131-1.html (382B)


      1 <html class="reftest-wait">
      2 <head>
      3 <script>
      4 
      5 function crash()
      6 {
      7  try {
      8    window.getSelection().containsNode([], false);
      9  } catch(e) { }
     10 
     11  try {
     12    window.getSelection().containsNode(null, false);
     13  } catch(e) { }
     14  
     15  document.documentElement.removeAttribute("class");
     16 }
     17 
     18 </script>
     19 </head>
     20 
     21 <body onload="setTimeout(crash, 10);">
     22 Foo
     23 </body>
     24 
     25 </html>