tor-browser

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

unknown-protocol-reload-crash-frame.html (379B)


      1 <!doctype html>
      2 <script>
      3  (async function() {
      4    if (!location.hash) {
      5      await new Promise(r => {
      6        window.addEventListener("hashchange", r, { once: true });
      7        location.hash = "foo";
      8      });
      9      location.reload(true);
     10    } else {
     11      location.href = "unlikely-protocol://foo"
     12      parent.document.documentElement.classList = "";
     13    }
     14  })();
     15 </script>