Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /speculation-rules/prefetch/initiators-window-open.sub.https.html?cross-site - WPT Dashboard Interop Dashboard
- /speculation-rules/prefetch/initiators-window-open.sub.https.html?same-site - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta name="timeout" content="long">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/dispatcher/dispatcher.js"></script>
<script src="/common/utils.js"></script>
<script src="../resources/utils.js"></script>
<script src="resources/utils.sub.js"></script>
<meta name="variant" content="?cross-site">
<meta name="variant" content="?same-site">
<script>
setup(() => assertSpeculationRulesIsSupported());
// `sourceDocument` (instead of `navigable`'s active document) should be
// used as the referring document for prefetch.
promise_test(async t => {
const win = await spawnWindow(t, { protocol: 'https' });
const hostname =
location.search === '?cross-site' ? '{{hosts[alt][www]}}' : undefined;
const nextUrl = win.getExecutorURL({ protocol: 'https', hostname, page: 2 });
await win.forceSinglePrefetch(nextUrl);
await win.execute_script((url) => {
window.executor.suspend(() => {
window.open(url, "_blank");
});
}, [nextUrl]);
// Below, the scripts given to `win.execute_script()` are executed on the
// `nextUrl` page in the new window, because `window.executor.suspend()`
// above made `win`'s original page stop processing `execute_script()`,
// while the new page of `nextUrl` in the new window starts processing
// `execute_script()` for the same ID. Same for below.
assert_equals(
await win.execute_script(() => location.href),
nextUrl.toString(),
"expected navigation to reach destination URL");
assert_prefetched(await win.getRequestHeaders());
}, `window.open()`);
promise_test(async t => {
const win = await spawnWindow(t, { protocol: 'https' });
const hostname =
location.search === '?cross-site' ? '{{hosts[alt][www]}}' : undefined;
const nextUrl = win.getExecutorURL({ protocol: 'https', hostname, page: 2 });
await win.forceSinglePrefetch(nextUrl);
await win.execute_script((url) => {
window.executor.suspend(() => {
window.open(url, "_blank", "noopener");
});
}, [nextUrl]);
assert_equals(
await win.execute_script(() => location.href),
nextUrl.toString(),
"expected navigation to reach destination URL");
assert_prefetched(await win.getRequestHeaders());
}, `window.open(noopener)`);
</script>