summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/referrer-policy/generic/resources/referrer.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/referrer-policy/generic/resources/referrer.py')
-rw-r--r--testing/web-platform/tests/referrer-policy/generic/resources/referrer.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/testing/web-platform/tests/referrer-policy/generic/resources/referrer.py b/testing/web-platform/tests/referrer-policy/generic/resources/referrer.py
new file mode 100644
index 0000000000..2d15dc09c4
--- /dev/null
+++ b/testing/web-platform/tests/referrer-policy/generic/resources/referrer.py
@@ -0,0 +1,10 @@
+def main(request, response):
+ response_headers = [(b"Access-Control-Allow-Origin", b"*")]
+ body = b"""
+ <p id=referrer>%s</p>
+ <script>
+ const referrer_text = referrer.textContent;
+ window.parent.postMessage(referrer_text, "*");
+ </script>
+ """ % request.headers.get(b"referer", b"")
+ return (200, response_headers, body)