Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<meta name="referrer" content="no-referrer">
<meta name="timeout" content="long">
<title>Test noreferrer</title>
<script src="/common/utils.js"></script>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="../resources/utils.js"></script>
<script src="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 not sent
// when the triggering page's referrer policy is set to no-referrer.
promise_test(async t => {
await referrer_test('(none)', token());
}, 'no referrer');
</script>