Files
sousa-gecko/testing/web-platform/tests/speculation-rules/prerender/navigation-api-multiple-entries.https.html
T
Sam Sneddon 5bbaff2951 Bug 2032349 [wpt PR 59217] - Speculation Rules prerender tests should check for support, a=testonly
Automatic update from web-platform-tests
Speculation Rules prerender tests should check for support

We're seeing timeouts on the STP bots, because spending over an hour
timing out on speculation rules tests just eats into the timeout.

--

wpt-commits: 9f7999f4b3dd412a338f3231228e64230d6a6531
wpt-pr: 59217
2026-04-23 10:14:37 +00:00

55 lines
2.6 KiB
HTML

<!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('prerender'));
promise_test(async t => {
const rcHelper = new PrerenderingRemoteContextHelper();
const referrerRC1 = await rcHelper.addWindow(undefined, { features: 'noopener' });
const referrerRC2 = await referrerRC1.navigateToNew();
const referrerRC3 = await referrerRC2.navigateToNew();
assert_equals(await referrerRC3.executeScript(() => navigation.entries().length), 3);
let referrerRC3CurrentId = await referrerRC3.executeScript(() => navigation.currentEntry.id);
const prerenderedRC = await referrerRC3.addPrerender();
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, referrerRC3CurrentId);
assert_equals(activationStateBeforeActivation.activationEntryId, activationStateBeforeActivation.entries[0].id);
assert_equals(activationStateBeforeActivation.activationNavigationType, "push");
await referrerRC3.navigateExpectingPrerenderingActivation(prerenderedRC);
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, 4);
assert_equals(activationStateAfterActivation.activationFromId, activationStateAfterActivation.entries[2].id);
assert_equals(activationStateAfterActivation.activationEntryId, activationStateAfterActivation.entries[3].id);
assert_equals(activationStateAfterActivation.activationNavigationType, "push");
},`navigation.entries() and navigation.activation should be updated on activation - multiple entries`);
</script>