This commit is contained in:
Stian Lund
2023-07-14 19:38:14 +02:00
parent 7721314971
commit 7853530226
+3 -3
View File
@@ -4,10 +4,10 @@
<title>Referrer-policy test page</title>
</head>
<body>
<p>The referrer of the current document is:</p>
<strong><pre id="demo"></pre></strong>
<p>The Javascript referrer of the current document is:</p>
<strong><pre id="referrer"></pre></strong>
<script>
document.getElementById("demo").innerHTML = document.referrer;
document.getElementById("referrer").innerHTML = document.referrer;
</script>
</body>