blob: 528197e3f994752dd9b9411343783d378e112a7b [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-when-cross-origin referrer policy when cross origin.");
jsTestIsAsync = true;
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the origin, not the full URL, because we are cross-origin.
shouldBeEqualToString("referrer", "http://127.0.0.1:8000/");
finishJSTest();
}
</script>
<iframe src="http://localhost:8000/referrer-policy/resources/document.html" referrerpolicy="origin-when-cross-origin"></iframe>
</body>
</html>