tor-browser

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

navigate-from-initial-about-blank-same-doc.html (553B)


      1 <!doctype html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <iframe id="i"></iframe>
      5 <script>
      6 promise_test(async t => {
      7  i.contentWindow.navigation.oncurrententrychange = t.unreached_func("currententrychange should not fire");
      8  i.contentWindow.location.href = "about:blank#1";
      9  i.contentWindow.location.href = "about:blank#2";
     10  await new Promise(resolve => t.step_timeout(resolve, 10));
     11 }, "currententrychange does not fire when navigating away from the initial about:blank");
     12 </script>