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-after-bfcache.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-after-bfcache.html')
-rw-r--r-- | testing/web-platform/tests/navigation-api/per-entry-events/dispose-after-bfcache.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/navigation-api/per-entry-events/dispose-after-bfcache.html b/testing/web-platform/tests/navigation-api/per-entry-events/dispose-after-bfcache.html new file mode 100644 index 0000000000..7d3ef4f81e --- /dev/null +++ b/testing/web-platform/tests/navigation-api/per-entry-events/dispose-after-bfcache.html @@ -0,0 +1,32 @@ +<!doctype html> +<script src="/resources/testharness.js"></script> +<script src="/resources/testharnessreport.js"></script> +<script src="/common/utils.js"></script> +<script src="/common/dispatcher/dispatcher.js"></script> +<script src="/html/browsers/browsing-the-web/back-forward-cache/resources/helper.sub.js"></script> +<script src="resources/is_uuid.js"></script> + +<script> +// This test: +// * Does a fragment navigation, then goes back (same-document). +// * Navigates away, then back via bfcache. +// When navigating away, navigation.entries()[1] will be overwritten. +// When returning after bfcache restore, navigation.entries()[1] should represent +// pageB, and the original navigation.entries()[1] should have been disposed. +runBfcacheTest({ + targetOrigin: originSameOrigin, + funcBeforeNavigation: async () => { + window.events = []; + await navigation.navigate("#1"); + await navigation.back(); + window.originalEntry1 = navigation.entries()[1]; + window.originalEntry1.ondispose = () => events.push("dispose"); + window.onpageshow = () => events.push("pageshow"); + }, + async funcAfterAssertion(pageA, pageB) { + assert_equals(await pageA.execute_script(() => navigation.entries().length), 2); + assert_false(await pageA.execute_script(() => window.originalEntry1 === navigation.entries[1])); + assert_array_equals(await pageA.execute_script(() => window.events), ["pageshow", "dispose"]); + } +}, "entries() must contain the forward-history page after navigating back to a bfcached page"); +</script> |