blob: a66f471fbdaf30c6818a0c3c926455395c6aaf94 [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 same origin.");
jsTestIsAsync = true;
if (window.internals)
internals.setResourceLoadStatisticsEnabled(false);
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the origin, not the full URL.
shouldBeEqualToString("referrer", "http://127.0.0.1:8000/");
if (window.internals)
internals.setResourceLoadStatisticsEnabled(true);
finishJSTest();
}
</script>
<iframe src="http://127.0.0.1:8000/referrer-policy/resources/document.html"></iframe>
</body>
</html>