chromium/third_party/blink/web_tests/external/wpt/xhr/resources/headers.py

# -*- 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"