blob: 4b77685c13dd46a1d6221c5c3eb6c92e7b89e31f [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 no-referrer-when-downgrade 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 empty string
shouldBeEqualToString("referrer", "");
finishJSTest();
}
</script>
<script src="http://localhost:8000/referrer-policy/resources/script.php" referrerpolicy="no-referrer-when-downgrade"></script>
</body>
</html>