https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 2b6fdc652d9eb3aaaf85015cebb76f17f1902b28 authored by Robin Berjon on 28 March 2014, 10:25:45 UTC
remove test that is supported neither by spec nor by implementations
Tip revision: 2b6fdc6
cors-cookie.py

def main(request, response):
    origin = request.GET.first("origin", request.headers["origin"])
    credentials = request.GET.first("credentials", "true")

    headers = [("Content-Type", "text/plain")]
    if origin != 'none':
        headers.append(("Access-Control-Allow-Origin", origin))
    if credentials != 'none':
        headers.append(("Access-Control-Allow-Credentials", credentials))

    ident = request.GET.first('ident', 'test')

    if ident in request.cookies:
        body = request.cookies[ident].value
        response.delete_cookie(ident)
    else:
        response.set_cookie(ident, "COOKIE");
        body = "NO_COOKIE"

    return headers, body
back to top