1
0
Fork 0
firefox/testing/web-platform/tests/xhr/resources/headers.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

12 lines
531 B
Python

# -*- coding: utf-8 -*-
def main(request, response):
response.headers.set(b"Content-Type", b"text/plain")
response.headers.set(b"X-Custom-Header", b"test")
response.headers.set(b"Set-Cookie", b"test")
response.headers.set(b"Set-Cookie2", b"test")
response.headers.set(b"X-Custom-Header-Empty", b"")
response.headers.set(b"X-Custom-Header-Comma", b"1")
response.headers.append(b"X-Custom-Header-Comma", b"2")
response.headers.set(b"X-Custom-Header-Bytes", u"".encode("utf-8"))
return b"TEST"