Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /cookies/set-and-delete-document-cookie.window.html - WPT Dashboard Interop Dashboard
// META: title=Deleting a cookie via a past expiration date via document.cookie
"use strict";
setup({ single_test: true });
document.cookie = "test=1";
assert_equals(document.cookie, "test=1");
document.cookie = "test=1; expires=Thu, 01 Jan 1970 00:00:00 GMT";
assert_equals(document.cookie, "");
done();