blob: cad861b43dd9737f1cd678dce4e155d23dcf1c0f [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name='referrer' content='strict-origin-when-cross-origin'>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of strict-origin-when-cross-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/strict-origin-when-cross-origin/same-origin.html");
finishJSTest();
}
</script>
<iframe src="http://127.0.0.1:8000/referrer-policy/resources/document.html"></iframe>
</body>
</html>