blob: 4c455f66a04528bd192f028ab8799d342aa49024 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body onload="clickLink()">
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function clickLink() {
// Should be the origin, not the full URL.
let expected = "http://127.0.0.1:8000/";
let a = document.createElement("a");
let policy = "strict-origin";
a.referrerPolicy = policy;
a.href = "http://127.0.0.1:8000/referrer-policy/resources/check-referrer.php?expected=" + expected + "&policy=" + policy;
a.click();
}
</script>
</body>
</html>