blob: 67df44ff4b3593bf8e1210602020355ad089ea1d [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name='referrer' content='strict-origin'>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of strict-origin referrer policy when cross origin.");
jsTestIsAsync = true;
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the origin, not the full URL.
shouldBeEqualToString("referrer", "http://127.0.0.1:8000/");
finishJSTest();
}
</script>
<iframe src="http://localhost:8000/referrer-policy/resources/document.html"></iframe>
</body>
</html>