blob: f10d64aeff42fcefc3184888e9a8b129d1f53790 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<!DOCTYPE html>
<title>Test default referrer</title>
<meta name="timeout" content="long">
<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 URL by default.
promise_test(async t => {
await referrer_test(window.location.href, token());
}, 'default referrer');
</script>
</body>
|