summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py')
-rw-r--r--testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py b/testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py
new file mode 100644
index 0000000000..1a5f7feb2a
--- /dev/null
+++ b/testing/web-platform/tests/fetch/api/resources/redirect-empty-location.py
@@ -0,0 +1,3 @@
+def main(request, response):
+ headers = [(b"Location", b"")]
+ return 302, headers, b""