blob: 0d892ed0e45d8967a1c209646a164a6ea3eb9d41 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name='referrer' content='origin'>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of origin referrer policy when cross origin from HTTPS to HTTP.");
jsTestIsAsync = true;
if (window.internals)
internals.settings.setAllowDisplayOfInsecureContent(true);
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the origin
shouldBeEqualToString("referrer", "https://127.0.0.1:8443/");
finishJSTest();
}
</script>
<iframe src="http://localhost:8000/referrer-policy/resources/document.html"></iframe>
</body>
</html>