1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2026-06-24 13:09:56 -04:00
This commit is contained in:
Stian Lund
2023-07-14 19:38:14 +02:00
parent 7721314971
commit 7853530226

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>