summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py')
-rw-r--r--testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py b/testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py
new file mode 100644
index 0000000000..e0668c67a1
--- /dev/null
+++ b/testing/web-platform/tests/xhr/resources/access-control-basic-allow-no-credentials.py
@@ -0,0 +1,5 @@
+def main(request, response):
+ response.headers.set(b"Content-Type", b"text/plain")
+ response.headers.set(b"Access-Control-Allow-Origin", request.headers.get(b"origin"))
+
+ response.content = b"PASS: Cross-domain access allowed."