summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/XMLHttpRequest/resources/auth7
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/XMLHttpRequest/resources/auth7')
-rw-r--r--testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py b/testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py
deleted file mode 100644
index ce2269739..000000000
--- a/testing/web-platform/tests/XMLHttpRequest/resources/auth7/corsenabled.py
+++ /dev/null
@@ -1,20 +0,0 @@
-import imp
-import os
-
-def main(request, response):
- response.headers.set('Access-Control-Allow-Origin', request.headers.get("origin"));
- response.headers.set('Access-Control-Allow-Credentials', 'true');
- response.headers.set('Access-Control-Allow-Methods', 'GET');
- response.headers.set('Access-Control-Allow-Headers', 'authorization, x-user, x-pass');
- response.headers.set('Access-Control-Expose-Headers', 'x-challenge, xhr-user, ses-user');
- auth = imp.load_source("", os.path.join(os.path.abspath(os.curdir),
- "XMLHttpRequest",
- "resources",
- "authentication.py"))
- if request.method == "OPTIONS":
- return ""
- else:
- return auth.main(request, response)
-
-
-