summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/cookies/resources/dropSecure.py
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/cookies/resources/dropSecure.py')
-rw-r--r--testing/web-platform/tests/cookies/resources/dropSecure.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/testing/web-platform/tests/cookies/resources/dropSecure.py b/testing/web-platform/tests/cookies/resources/dropSecure.py
new file mode 100644
index 0000000000..af71148cd6
--- /dev/null
+++ b/testing/web-platform/tests/cookies/resources/dropSecure.py
@@ -0,0 +1,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}'