blob: d46b02a5ad0a6efa0e0c334e8231c9e234877428 [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 strict-origin-when-cross-origin 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 because we are cross-origin and going from HTTPS to HTTP.
shouldBeEqualToString("referrer", "");
finishJSTest();
}
</script>
<script src="http://localhost:8000/referrer-policy/resources/script.php" referrerpolicy="strict-origin-when-cross-origin"></script>
</body>
</html>