summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:22:09 +0000
commit43a97878ce14b72f0981164f87f2e35e14151312 (patch)
tree620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html
parentInitial commit. (diff)
downloadfirefox-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/speculation-rules/prerender/referrer-policy-from-rules.html')
-rw-r--r--testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html43
1 files changed, 43 insertions, 0 deletions
diff --git a/testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html b/testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html
new file mode 100644
index 0000000000..b19c5dddac
--- /dev/null
+++ b/testing/web-platform/tests/speculation-rules/prerender/referrer-policy-from-rules.html
@@ -0,0 +1,43 @@
+<!DOCTYPE html>
+<meta name="timeout" content="long">
+<title>Prerender with the referrer policy specified in speculation rules</title>
+
+<!--Split test cases due to the use of timeouts in test utilities.-->
+<meta name="variant" content="?1-1">
+<meta name="variant" content="?2-last">
+
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/common/dispatcher/dispatcher.js"></script>
+<script src="/common/subset-tests.js"></script>
+<script src="/common/utils.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>
+setup(() => assertSpeculationRulesIsSupported());
+
+subsetTest(promise_test, async t => {
+ const {exec, tryToActivate} = await create_prerendered_page(
+ t, {},
+ {referrer_policy: 'strict-origin-when-cross-origin'},
+ {referrer_policy: 'strict-origin'});
+
+ const actualReferrer = await exec(() => { return document.referrer; });
+ const expectedReferrer = location.origin + "/";
+ assert_equals(actualReferrer, expectedReferrer, 'must send the origin as the referrer');
+
+ const result = await tryToActivate();
+ assert_equals(result, 'activated');
+}, 'with "strict-origin" referrer policy in rule set overriding "strict-origin-when-cross-origin" of referring page');
+
+subsetTest(promise_test, async t => {
+ const {exec, tryToActivate} = await create_prerendered_page(
+ t, {},
+ {referrer_policy: 'strict-origin-when-cross-origin'},
+ {referrer_policy: 'no-referrrrrrrer'});
+ const result = await tryToActivate();
+ assert_equals(result, 'discarded');
+}, 'unrecognized policies invalidate the rule');
+
+</script>