blob: 10bad9c49fe14766f475ebb90c520b1aba63a4ad [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta name='referrer' content='same-origin'>
<script src="/js-test-resources/js-test.js"></script>
</head>
<body>
<script>
description("Tests the behavior of same-origin referrer policy when cross origin.");
jsTestIsAsync = true;
window.onmessage = function(event) {
referrer = event.data.referrer;
// Should be the empty string because we are cross-origin.
shouldBeEqualToString("referrer", "");
finishJSTest();
}
</script>
<iframe src="http://localhost:8000/referrer-policy/resources/document.html"></iframe>
</body>
</html>