1
0
Fork 0
firefox/testing/web-platform/tests/resource-timing/resources/resource-timing-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

20 lines
723 B
Python

def main(request, response):
content = request.GET.first(b"content")
length = request.GET.first(b"length").decode("ascii")
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"
if length == b"auto" :
output += b"Content-Length:"
output += "{0}".format(len(content)).encode("ascii")
output += b"\r\n"
elif length != b"none" :
output += b"Content-Length:"
output += "{0}".format(length).encode("ascii")
output += b"\r\n"
output += b"\r\n"
output += content
response.writer.write(output)
response.close_connection = True