diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 16:38:25 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 16:38:25 +0100 |
commit | 26e53627d6922b3b965afd76fc5d72e3cc1d9ba5 (patch) | |
tree | f894fd8f5077620e694058995b180c6d1c60dca6 /devtools/client/storage/test/storage-listings.html | |
parent | f0175fb7abd0aad3054236fb1a0cc430c6d05db9 (diff) | |
download | UXP-26e53627d6922b3b965afd76fc5d72e3cc1d9ba5.tar UXP-26e53627d6922b3b965afd76fc5d72e3cc1d9ba5.tar.gz UXP-26e53627d6922b3b965afd76fc5d72e3cc1d9ba5.tar.lz UXP-26e53627d6922b3b965afd76fc5d72e3cc1d9ba5.tar.xz UXP-26e53627d6922b3b965afd76fc5d72e3cc1d9ba5.zip |
moebius#337: Added option to remove all session cookies for a specific domain
Issue #31
https://github.com/MoonchildProductions/moebius/pull/337
Diffstat (limited to 'devtools/client/storage/test/storage-listings.html')
-rw-r--r-- | devtools/client/storage/test/storage-listings.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/devtools/client/storage/test/storage-listings.html b/devtools/client/storage/test/storage-listings.html index 89ae5a332..313b36b71 100644 --- a/devtools/client/storage/test/storage-listings.html +++ b/devtools/client/storage/test/storage-listings.html @@ -20,7 +20,10 @@ document.cookie = "c1=foobar; expires=" + new Date(cookieExpiresTime1).toGMTString() + "; path=/browser"; document.cookie = "cs2=sessionCookie; path=/; domain=" + partialHostname; document.cookie = "c3=foobar-2; expires=" + - new Date(cookieExpiresTime2).toGMTString() + "; path=/"; + new Date(cookieExpiresTime1).toGMTString() + "; path=/"; +document.cookie = "c4=foobar-3; expires=" + + new Date(cookieExpiresTime2).toGMTString() + "; path=/; domain=" + + partialHostname; // ... and some local storage items .. localStorage.setItem("ls1", "foobar"); localStorage.setItem("ls2", "foobar-2"); |