diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html | |
parent | Initial commit. (diff) | |
download | firefox-upstream.tar.xz firefox-upstream.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html')
-rw-r--r-- | testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html b/testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html new file mode 100644 index 0000000000..67f54da48d --- /dev/null +++ b/testing/web-platform/tests/navigation-api/per-entry-events/dispose-cross-document.html @@ -0,0 +1,37 @@ +<!doctype html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<iframe id="iframe" src="/common/blank.html"></iframe> +<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(r => window.onload = () => t.step_timeout(r, 0)); + + iframe.contentWindow.location.search = "?1"; + await new Promise(r => iframe.onload = () => t.step_timeout(r, 0)); + + const keyFor1 = iframe.contentWindow.navigation.currentEntry.key; + + iframe.contentWindow.location.search = "?2"; + await new Promise(r => iframe.onload = () => t.step_timeout(r, 0)); + iframe.contentWindow.location.search = "?3"; + await new Promise(r => iframe.onload = () => t.step_timeout(r, 0)); + + iframe.contentWindow.navigation.traverseTo(keyFor1); + await new Promise(r => iframe.onload = () => t.step_timeout(r, 0)); + + assert_equals((new URL(iframe.contentWindow.location.href)).search, "?1"); + + assert_equals(iframe.contentWindow.navigation.entries().length, 4); + const [, entry2, entry3] = iframe.contentWindow.navigation.entries(); + + entry2.ondispose = t.unreached_func("entry2 dispose must not fire"); + entry2.addEventListener("dispose", t.unreached_func("entry3 dispose must not fire")); + + iframe.contentWindow.navigation.navigate("/common/blank.html?fork"); + await new Promise(r => iframe.onload = r); + + // Test passes if we reached this point with no dispose events firing. +}, "No dispose events are fired due to cross-document forward pruning"); +</script> |