blob: 6057c7447e32e00a051aee6b9cc1c40520a90032 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of unsafe-url 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 full URL
shouldBeEqualToString("referrer", "https://127.0.0.1:8443/referrer-policy-iframe/unsafe-url/cross-origin-http.https.html");
if (window.internals)
internals.setResourceLoadStatisticsEnabled(true);
finishJSTest();
}
</script>
<iframe src="http://localhost:8000/referrer-policy/resources/document.html" referrerpolicy="unsafe-url"></iframe>
</body>
</html>