blob: 7b69d159a8ffc0a62e2fae6b3adc5bdc01de9c4e [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of unsafe-url referrer policy when same origin.");
jsTestIsAsync = true;
function checkReferrer(value) {
referrer = value;
// Should be the full URL
shouldBeEqualToString("referrer", "http://127.0.0.1:8000/referrer-policy-script/unsafe-url/same-origin.html");
finishJSTest();
}
if (window.testRunner) {
testRunner.setStatisticsShouldDowngradeReferrer(false, function () { downgradeReferrerCallback('unsafe-url', '127.0.0.1')});
}
</script>
</body>
</html>