blob: 6d4a11870cfadb10e460b2444a3dcc21c6acdfdf [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of unsafe-url referrer policy when cross origin.");
jsTestIsAsync = true;
if (window.internals)
internals.setResourceLoadStatisticsEnabled(false);
if (window.testRunner) {
testRunner.setStatisticsShouldDowngradeReferrer(false, function () {
// Should be the full URL
let expected = "http://127.0.0.1:8000/referrer-policy-img/unsafe-url/cross-origin-http-http.html";
let img = new Image();
img.referrerPolicy = "unsafe-url";
img.onload = function() { testPassed('referrer is "' + expected + '"'); finishJSTest(); }
img.onerror = function() { testFailed("referrer is not as expected"); finishJSTest(); }
img.src = "http://127.0.0.1:8000/referrer-policy/resources/image.php?expected=" + expected;
if (window.internals)
internals.setResourceLoadStatisticsEnabled(true);
});
}
</script>
</body>
</html>