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