summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py')
-rw-r--r--testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py b/testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py
new file mode 100644
index 0000000000..5421893b26
--- /dev/null
+++ b/testing/web-platform/tests/fetch/h1-parsing/resources/status-code.py
@@ -0,0 +1,6 @@
+def main(request, response):
+ output = b"HTTP/1.1 "
+ output += request.GET.first(b"input")
+ output += b"\nheader-parsing: is sad\n"
+ response.writer.write(output)
+ response.close_connection = True