summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/reset-token.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/xhr/resources/reset-token.py')
-rw-r--r--testing/web-platform/tests/xhr/resources/reset-token.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/resources/reset-token.py b/testing/web-platform/tests/xhr/resources/reset-token.py
new file mode 100644
index 0000000000..257c2aae80
--- /dev/null
+++ b/testing/web-platform/tests/xhr/resources/reset-token.py
@@ -0,0 +1,5 @@
+def main(request, response):
+ response.headers.set(b"Access-Control-Allow-Origin", request.headers.get(b"origin"))
+ token = request.GET[b"token"]
+ request.server.stash.put(token, b"")
+ response.content = b"PASS"