diff options
Diffstat (limited to 'testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html')
-rw-r--r-- | testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html b/testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html new file mode 100644 index 0000000000..c1ecdaeeaf --- /dev/null +++ b/testing/web-platform/tests/navigation-api/navigation-methods/navigate-history-push-not-loaded.html @@ -0,0 +1,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> |