1
0
Fork 0
firefox/testing/web-platform/tests/fetch/content-length/resources/content-length.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

10 lines
413 B
Python

def main(request, response):
response.add_required_headers = False
output = b"HTTP/1.1 200 OK\r\n"
output += b"Content-Type: text/plain;charset=UTF-8\r\n"
output += b"Connection: close\r\n"
output += request.GET.first(b"length") + b"\r\n"
output += b"\r\n"
output += b"Fact: this is really forty-two bytes long."
response.writer.write(output)
response.close_connection = True