summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/xhr/resources/access-control-preflight-request-invalid-status.py
blob: 2a59059cc6666f718c681b86fbcb50ff4ee051d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
def main(request, response):
    try:
        code = int(request.GET.first(b"code", None))
    except:
        code = None

    if request.method == u"OPTIONS":
        if code:
            response.status = code
        response.headers.set(b"Access-Control-Max-Age", 1)
        response.headers.set(b"Access-Control-Allow-Headers", b"x-pass")
    else:
        response.status = 200

    response.headers.set(b"Cache-Control", b"no-store")
    response.headers.set(b"Access-Control-Allow-Origin", request.headers.get(b"origin"))