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