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/shared/specs | |
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/shared/specs')
-rw-r--r-- | devtools/shared/specs/storage.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/devtools/shared/specs/storage.js b/devtools/shared/specs/storage.js index 77f90323f..be56678b7 100644 --- a/devtools/shared/specs/storage.js +++ b/devtools/shared/specs/storage.js @@ -97,6 +97,14 @@ createStorageSpec({ }, response: {} } + }, { + removeAllSessionCookies: { + request: { + host: Arg(0, "string"), + domain: Arg(1, "nullable:string") + }, + response: {} + } } ) }); |