blob: 78e02a89cff57023de4ef4d099c399c55dc197d2 [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of same-origin referrer policy when same origin.");
jsTestIsAsync = true;
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the full URL because we are same-origin.
shouldBeEqualToString("referrer", "http://127.0.0.1:8000/referrer-policy-iframe/same-origin/same-origin.html");
finishJSTest();
}
</script>
<iframe src="http://127.0.0.1:8000/referrer-policy/resources/document.html" referrerpolicy="same-origin"></iframe>
</body>
</html>