diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 14:59:24 +0100 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-03-02 14:59:24 +0100 |
commit | 71fd51a863171d9f462d1311749de717361406a6 (patch) | |
tree | b071df1f04808b437eb3d8dac6017b42ab7b2950 /devtools/shared | |
parent | 43ddb9b8c08ac148a9b03f16f45ec2cb71243f81 (diff) | |
download | uxp-71fd51a863171d9f462d1311749de717361406a6.tar.gz |
Bug 1320362: Move indexedDb storage type in the storage inspector into a new column
Issue #31
Diffstat (limited to 'devtools/shared')
-rw-r--r-- | devtools/shared/specs/storage.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/devtools/shared/specs/storage.js b/devtools/shared/specs/storage.js index 3674992ed3..77f90323f2 100644 --- a/devtools/shared/specs/storage.js +++ b/devtools/shared/specs/storage.js @@ -40,6 +40,7 @@ function createStorageSpec(options) { // Cookies store object types.addDictType("cookieobject", { + uniqueKey: "string", name: "string", value: "longstring", path: "nullable:string", @@ -176,11 +177,13 @@ createStorageSpec({ // This is a union on idb object, db metadata object and object store metadata // object types.addDictType("idbobject", { + uniqueKey: "string", name: "nullable:string", db: "nullable:string", objectStore: "nullable:string", origin: "nullable:string", version: "nullable:number", + storage: "nullable:string", objectStores: "nullable:number", keyPath: "nullable:string", autoIncrement: "nullable:boolean", |