blob: 27c4e330442f0185be29f25707aea4e16378777f [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 same origin.");
jsTestIsAsync = true;
if (window.internals)
internals.setResourceLoadStatisticsEnabled(false);
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/origin-when-cross-origin/same-origin.html");
if (window.internals)
internals.setResourceLoadStatisticsEnabled(true);
finishJSTest();
}
</script>
<iframe src="http://127.0.0.1:8000/referrer-policy/resources/document.html" referrerpolicy="origin-when-cross-origin"></iframe>
</body>
</html>