blob: 2f5d1e935d6e9b717d2f2831a2a814959dbb894a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<!DOCTYPE html>
<meta name="referrer" content="strict-origin">
<meta name="timeout" content="long">
<title>Test strict-origin referrer</title>
<script src="/common/utils.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/speculation-rules/prerender/resources/utils.js"></script>
<script src="resources/referrer-test.js"></script>
<body>
<script>
setup(() => assertSpeculationRulesIsSupported());
// Tests that the referrer on the prerendering navigation request is the
// triggering page's origin when the referrer policy is set to strict-origin.
promise_test(async t => {
const expected = new URL('', window.origin).href;
await referrer_test(expected, token());
}, 'strict-origin referrer');
</script>
</body>
|