tor-browser

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

1343666.html (431B)


      1 <html class="reftest-wait">
      2 <head>
      3 <meta charset="UTF-8">
      4 <script>
      5 
      6 function f()
      7 {
      8    finish();
      9 }
     10 
     11 window.onload = function() {
     12  let a = window.open("empty.html", null, "width=300,height=300");
     13  setTimeout(function(){
     14    a.close();
     15    a.addEventListener("vrdisplayconnect", function(){});
     16    window.close();
     17    document.documentElement.removeAttribute("class");
     18  }, 0);
     19 };
     20 
     21 </script>
     22 </head>
     23 </html>