diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 17:52:34 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 17:52:34 +0100 |
commit | 166fb9f2893dcfb3375aa3227d116fb0ce2c6d42 (patch) | |
tree | 9bfd8bb159a20f00ff507ab9c27c22434155df23 /devtools/shared/specs | |
parent | 26e53627d6922b3b965afd76fc5d72e3cc1d9ba5 (diff) | |
download | UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.gz UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.lz UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.tar.xz UXP-166fb9f2893dcfb3375aa3227d116fb0ce2c6d42.zip |
moebius#339: Make it possible to add cookies, local and session storage entries
Issue #31
https://github.com/MoonchildProductions/moebius/pull/339
Diffstat (limited to 'devtools/shared/specs')
-rw-r--r-- | devtools/shared/specs/storage.js | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/devtools/shared/specs/storage.js b/devtools/shared/specs/storage.js index be56678b7..42a35073a 100644 --- a/devtools/shared/specs/storage.js +++ b/devtools/shared/specs/storage.js @@ -90,6 +90,13 @@ createStorageSpec({ methods: Object.assign({}, editRemoveMethods, { + addItem: { + request: { + guid: Arg(0, "string"), + }, + response: {} + } + }, { removeAll: { request: { host: Arg(0, "string"), @@ -119,6 +126,14 @@ types.addDictType("storageobject", { const storageMethods = Object.assign({}, editRemoveMethods, { + addItem: { + request: { + guid: Arg(0, "string"), + host: Arg(1, "nullable:string") + }, + response: {} + } + }, { removeAll: { request: { host: Arg(0, "string") |