tor-browser

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

navigate-anchor-same-origin-cross-document.html (955B)


      1 <!doctype html>
      2 <script src="/resources/testharness.js"></script>
      3 <script src="/resources/testharnessreport.js"></script>
      4 <a id="a" href="foo.html"></a>
      5 <script>
      6 async_test(t => {
      7  navigation.onnavigate = t.step_func_done(e => {
      8    assert_equals(e.navigationType, "push");
      9    assert_true(e.cancelable);
     10    assert_true(e.canIntercept);
     11    assert_false(e.userInitiated);
     12    assert_false(e.hashChange);
     13    assert_equals(e.formData, null);
     14    assert_equals(e.downloadRequest, null);
     15    assert_equals(new URL(e.destination.url).pathname,
     16                  "/navigation-api/navigate-event/foo.html");
     17    assert_false(e.destination.sameDocument);
     18    assert_equals(e.destination.key, "");
     19    assert_equals(e.destination.id, "");
     20    assert_equals(e.destination.index, -1);
     21    assert_equals(e.sourceElement, document.getElementById("a"));
     22    e.preventDefault();
     23  });
     24  a.click();
     25 }, "<a> cross-document (but same-origin) navigate event");
     26 </script>