1
0
Fork 0
firefox/testing/web-platform/tests/xhr/resources/access-control-preflight-request-header-lowercase.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

16 lines
683 B
Python

def main(request, response):
response.headers.set(b"Cache-Control", b"no-store")
response.headers.set(b"Access-Control-Allow-Origin", b"*")
response.headers.set(b"Access-Control-Max-Age", 0)
if request.method == u"OPTIONS":
if b"x-test" in [header.strip(b" ") for header in
request.headers.get(b"Access-Control-Request-Headers").split(b",")]:
response.headers.set(b"Access-Control-Allow-Headers", b"X-Test")
else:
response.status = 400
elif request.method == u"GET":
if request.headers.get(b"X-Test"):
response.content = b"PASS"
else:
response.status = 400