summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/resources/dropSecure.py
blob: af71148cd6f3c85bcc9301f5d13eb167f545d3fd (plain)
1
2
3
4
5
6
7
8
9
10
11
from cookies.resources.helpers import makeDropCookie, setNoCacheAndCORSHeaders

def main(request, response):
    """Respond to `/cookie/drop/secure` by dropping the two cookie set by
    `setSecureTestCookies()`"""
    headers = setNoCacheAndCORSHeaders(request, response)

    # Expire the cookies, and return a JSON-encoded success code.
    headers.append(makeDropCookie(b"alone_secure", False))
    headers.append(makeDropCookie(b"alone_insecure", False))
    return headers, b'{"success": true}'