mirror of
https://github.com/Pathduck/pathduck.github.io.git
synced 2026-07-16 16:42:00 -04:00
15 lines
304 B
HTML
Executable File
15 lines
304 B
HTML
Executable File
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Referrer-policy test page</title>
|
|
</head>
|
|
<body>
|
|
<p>The Javascript referrer of the current document is:</p>
|
|
<strong><pre id="referrer"></pre></strong>
|
|
<script>
|
|
document.getElementById("referrer").innerHTML = document.referrer;
|
|
</script>
|
|
|
|
</body>
|
|
</html>
|