tor-browser

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

1529203-3.html (438B)


      1 <!DOCTYPE HTML>
      2 <html class="reftest-wait">
      3 <script>
      4  var win;
      5  function doIt() {
      6    if (!win) {
      7      win = window.open();
      8    }
      9    var doc = win.document;
     10    doc.open();
     11    doc.write('<script type="module" src="./module-with-syntax-error.js"></' + 'script>');
     12    doc.close();
     13  }
     14  doIt()
     15  setTimeout(() => {
     16      doIt();
     17      win.close();
     18      document.documentElement.removeAttribute("class");
     19  }, 100);
     20 </script>
     21 </html>