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