blob: 9664cd81244cde814a9ca48e87b42215370ce112 [file] [log] [blame]
<!DOCTYPE html><!-- webkit-test-runner [ dumpJSConsoleLogInStdErr=true ] -->
<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 from HTTPS to HTTP.");
jsTestIsAsync = true;
if (window.internals)
internals.settings.setAllowRunningOfInsecureContent(true);
function checkReferrer(value) {
referrer = value;
// Should be the full URL
shouldBeEqualToString("referrer", "https://127.0.0.1:8443/referrer-policy-script/unsafe-url/cross-origin-http.https.html");
finishJSTest();
}
if (window.testRunner) {
testRunner.setStatisticsShouldDowngradeReferrer(false, function () {
downgradeReferrerCallback('unsafe-url', 'localhost');
});
}
</script>
</body>
</html>