blob: 862e6c9ca1932e147d6c076665877ffa7e33ec30 [file] [log] [blame]
<!DOCTYPE html>
<html>
<body onload="clickLink()">
<script>
if (window.testRunner)
testRunner.waitUntilDone();
function clickLink() {
// Should be the full URL
let expected = "http://127.0.0.1:8000/referrer-policy-anchor/no-referrer-when-downgrade/same-origin.html";
let a = document.createElement("a");
let policy = "no-referrer-when-downgrade";
a.referrerPolicy = policy;
a.href = "http://127.0.0.1:8000/referrer-policy/resources/check-referrer.py?expected=" + expected + "&policy=" + policy;
a.click();
}
</script>
</body>
</html>