summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigate-event/intercept-popstate.html
blob: f5f9d82be7f7ec737ea68bae57f7baf24a30a149 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script>
promise_test(async t => {
  // Wait for after the load event so that the navigation doesn't get converted
  // into a replace navigation.
  await new Promise(resolve => window.onload = () => t.step_timeout(resolve, 0));
  history.replaceState({ state: "foo"}, "", "#replace");

  let onpopstate_fired = false;
  let last_state;
  window.onpopstate = e => {
    onpopstate_fired = true;
    last_state = e.state;
  }
  navigation.onnavigate = t.step_func(e => e.intercept());

  await navigation.navigate("#").finished;
  assert_true(navigation.canGoBack);

  await navigation.back().finished;
  assert_true(onpopstate_fired);
  assert_not_equals(last_state, null);
}, "event.intercept() should provide popstate with a valid state object");
</script>