blob: 3f11877fb28e6490e312b8bf158a548ad36c3d07 [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/unsafe-url/cross-origin-http-http.html";
let a = document.createElement("a");
let policy = "unsafe-url";
a.referrerPolicy = policy;
a.href = "http://localhost:8000/referrer-policy/resources/check-referrer.py?expected=" + expected + "&policy=" + policy;
a.click();
}
</script>
</body>
</html>