summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html
blob: c1ecdaeeafdfbee3b3a1f25e826e5aa435bbe7b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/helpers.js"></script>

<script>
promise_test(async t => {
  // Purposefully do not wait until after the load event (unlike some sibling tests).
  assert_equals(navigation.entries().length, 1);
  assert_equals(document.readyState, "loading", "Document must not have loaded yet");

  let navigateEventType;
  navigation.onnavigate = e => navigateEventType = e.navigationType;

  await navigation.navigate("#1", { history: "push" }).finished;
  assert_equals(navigateEventType, "push");
  assert_equals(navigation.entries().length, 2);
  assert_equals(navigation.currentEntry.index, 1);
}, "navigate() with history: 'push' in a document that has not yet had its load event");
</script>