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