summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigate-event/intercept-on-synthetic-event.html
blob: 3a4b54de5e9c959eb58873066e52db1be10cbd46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
async_test(t => {
  // We need to grab an NavigationDestination to construct the event.
  navigation.onnavigate = t.step_func_done(e => {
    const event = new NavigateEvent("navigate", {
      destination: e.destination,
      signal: (new AbortController()).signal
    });

    assert_throws_dom("SecurityError", () => event.intercept());
  });
  history.pushState(1, null, "#1");
}, "event.intercept() throws if invoked on a synthetic event");
</script>