1
0
mirror of https://github.com/Pathduck/pathduck.github.io.git synced 2025-12-29 11:45:20 -05:00
Files
pathduck.github.io/test/referrer/index.html
2025-06-01 11:43:10 +02:00

20 lines
922 B
HTML
Executable File

<!DOCTYPE html>
<html>
<head>
<title>Referrer-policy test page</title>
<style>body {color: white; background: darkslategray;} a {color: deepskyblue;}</style>
</head>
<body>
<iframe width="500" height="300" src="default.html"></iframe>
<iframe width="500" height="300" src="no-referrer.html"></iframe>
<iframe width="500" height="300" src="no-referrer-when-downgrade.html"></iframe>
<iframe width="500" height="300" src="origin.html"></iframe>
<iframe width="500" height="300" src="origin-when-cross-origin.html"></iframe>
<iframe width="500" height="300" src="same-origin.html"></iframe>
<iframe width="500" height="300" src="strict-origin.html"></iframe>
<iframe width="500" height="300" src="strict-origin-when-cross-origin.html"></iframe>
<iframe width="500" height="300" src="unsafe-url.html"></iframe>
<iframe width="500" height="300" src="js-referrer.html"></iframe>
</body>
</html>