summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html')
-rw-r--r--testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html61
1 files changed, 61 insertions, 0 deletions
diff --git a/testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html b/testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html
new file mode 100644
index 0000000000..e3ecf1b72b
--- /dev/null
+++ b/testing/web-platform/tests/speculation-rules/prerender/navigation-api-location-replace.html
@@ -0,0 +1,61 @@
+<!DOCTYPE html>
+<meta name="timeout" content="long">
+<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/remote-context-helper/resources/remote-context-helper.js"></script>
+<script src="../resources/utils.js"></script>
+<script src="resources/utils.js"></script>
+
+<body>
+<script>
+setup(() => assertSpeculationRulesIsSupported());
+
+promise_test(async t => {
+ const rcHelper = new RemoteContextHelper();
+ const referrerRC = await rcHelper.addWindow(undefined, { features: 'noopener' });
+ assert_equals(await referrerRC.executeScript(() => navigation.entries().length), 1);
+ let referrerRCCurrentId = await referrerRC.executeScript(() => navigation.currentEntry.id);
+
+ const prerenderedRC = await addPrerenderRC(referrerRC);
+ let activationStateBeforeActivation = await prerenderedRC.executeScript(() => {
+ return {
+ entries: navigation.entries().map(e => ({ id: e.id, })),
+ activationEntryId: navigation.activation.entry?.id,
+ activationFromId: navigation.activation.from?.id,
+ activationNavigationType : navigation.activation.navigationType,
+ }
+ });
+ assert_equals(activationStateBeforeActivation.entries.length, 1);
+ assert_equals(activationStateBeforeActivation.activationFromId, referrerRCCurrentId);
+ assert_equals(activationStateBeforeActivation.activationEntryId, activationStateBeforeActivation.entries[0].id);
+ assert_equals(activationStateBeforeActivation.activationNavigationType, "push");
+
+ // Save the current entry before activation.
+ await prerenderedRC.executeScript(() => window.currentEntryBeforeActivation = navigation.currentEntry);
+
+ await activatePrerenderRC(referrerRC, prerenderedRC, url => {
+ location.replace(url);
+ });
+
+ let activationStateAfterActivation = await prerenderedRC.executeScript(() => {
+ return {
+ entries: navigation.entries().map(e => ({ id: e.id, })),
+ activationEntryId: navigation.activation.entry?.id,
+ activationFromId: navigation.activation.from?.id,
+ activationNavigationType : navigation.activation.navigationType,
+ }
+ });
+ assert_equals(activationStateAfterActivation.entries.length, 1);
+ assert_equals(activationStateAfterActivation.activationFromId, referrerRCCurrentId);
+ assert_equals(activationStateAfterActivation.activationEntryId, activationStateAfterActivation.entries[0].id);
+ assert_equals(activationStateAfterActivation.activationNavigationType, "replace");
+
+ let currentEntryIdentity = await prerenderedRC.executeScript(() => {
+ return window.currentEntryBeforeActivation === navigation.currentEntry &&
+ navigation.currentEntry === navigation.entries()[navigation.entries().length - 1];
+ });
+ assert_true(currentEntryIdentity);
+},`navigation.entries() and navigation.activation should be updated on activation and handle replacing correctly`);
+</script>