blob: 1bcb7c8166d360b72a9d0da81141802a5b824515 [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 same 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', '127.0.0.1')});
}
</script>
</body>
</html>