https://github.com/web-platform-tests/wpt
Raw File
Tip revision: 85bfdbfc6739dd090b0a568712713432d3aa2d51 authored by Darren Shen on 11 April 2018, 10:17:19 UTC
[css-typed-om] Support remaining inline properties.
Tip revision: 85bfdbf
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