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