blob: cea3a13db40134a1f1e7d07631f833004c8aa73f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<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" referrerpolicy="origin"></iframe>
</body>
</html>