[Storage] Remove all traces of "temporary" storage from the IndexedDB panel
Categories
(DevTools :: Storage Inspector, defect, P2)
Tracking
(Not tracked)
People
(Reporter: miker, Unassigned)
References
(Blocks 1 open bug)
Details
The storage team are removing the storage
parameter e.g. IDBFactory.open(name, { storage: temporary})
We should remove all traces of "temporary" storage from the storage inspector.
Comment 1•5 years ago
|
||
Note, that it is/was possible to specify other persistence types:
IDBFactory.open(name, { storage: "default"})
IDBFactory.open(name, { storage: "persistent"})
Reporter | ||
Comment 2•5 years ago
|
||
(In reply to Jan Varga [:janv] from comment #1)
Note, that it is/was possible to specify other persistence types:
IDBFactory.open(name, { storage: "default"})
IDBFactory.open(name, { storage: "persistent"})
At the moment we access the sqlite DB directly in order to get the indexedDB information. Of course, this will change soon when we can get the DB names using IDBFactory.databases()
(bug 934640).
Accessing the sqlite file directly means building the file path. To do this we need to use the strings "default", "persistent" and "temporary" but in this bug we will simply remove "temporary."
Comment 3•5 years ago
|
||
Mike I am unassigning you, but please speak up if you are still interested in this bug.
Honza
Updated•2 years ago
|
Description
•