From 36d22d82aa202bb199967e9512281e9a53db42c9 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 21:33:14 +0200 Subject: Adding upstream version 115.7.0esr. Signed-off-by: Daniel Baumann --- .../user/storage_inspector/indexeddb/index.rst | 52 +++++++++++++++++++++ .../indexeddb/indexed_db_context_menu.png | Bin 0 -> 9346 bytes .../indexeddb/indexed_db_details.png | Bin 0 -> 9527 bytes .../indexeddb/indexed_db_table_widget_context.png | Bin 0 -> 9708 bytes .../indexeddb/indexeddb_delete_warning.png | Bin 0 -> 9222 bytes 5 files changed, 52 insertions(+) create mode 100644 devtools/docs/user/storage_inspector/indexeddb/index.rst create mode 100644 devtools/docs/user/storage_inspector/indexeddb/indexed_db_context_menu.png create mode 100644 devtools/docs/user/storage_inspector/indexeddb/indexed_db_details.png create mode 100644 devtools/docs/user/storage_inspector/indexeddb/indexed_db_table_widget_context.png create mode 100644 devtools/docs/user/storage_inspector/indexeddb/indexeddb_delete_warning.png (limited to 'devtools/docs/user/storage_inspector/indexeddb') diff --git a/devtools/docs/user/storage_inspector/indexeddb/index.rst b/devtools/docs/user/storage_inspector/indexeddb/index.rst new file mode 100644 index 0000000000..7273e8c456 --- /dev/null +++ b/devtools/docs/user/storage_inspector/indexeddb/index.rst @@ -0,0 +1,52 @@ +========= +IndexedDB +========= + +When you select an origin inside the *Indexed DB* storage type in the storage tree of the :doc:`Storage Inspector <../index>`, a table lists the details of all the databases present for that origin. + +.. note:: + + The data shown in an IndexedDB database is a snapshot of the data as it was when you opened the Storage Inspector tool. + + +Databases have the following details: + + +- *Database Name* — The name of the database. +- *Storage* — The `storage type `_ specified for the database. +- *Origin* — The origin of the database. +- *Version* — The database version. +- *Object Stores* — The number of object stores in the database. + + +When an IndexedDB database is selected in the storage tree, details about all the object stores are listed in the table. Any object store has the following details: + + +- *Object Store Name* — The name of the object store. +- *Key* — The `keyPath `_ property of the object store. +- *Auto Increment* — Is automatic incrementation of the keys enabled? +- *Indexes* — Array of indexes present in the object store as shown below. + + +.. image:: indexed_db_details.png + :class: border + + +When an object store is selected in the storage tree, all the items in that object store are listed in the table. All items have a key and a value associated with them. + +You can delete an IndexedDB database using the context menu in the storage tree: + +.. image:: indexed_db_context_menu.png + :class: border + + +If the database cannot be deleted (most commonly because there are still active connections to the database), a warning message will be displayed in the Storage Inspector: + +.. image:: indexeddb_delete_warning.png + :class: border + + +You can use the context menu in the table widget to delete all items in an object store, or a particular item: + +.. image:: indexed_db_table_widget_context.png + :class: border diff --git a/devtools/docs/user/storage_inspector/indexeddb/indexed_db_context_menu.png b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_context_menu.png new file mode 100644 index 0000000000..45dbc214fe Binary files /dev/null and b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_context_menu.png differ diff --git a/devtools/docs/user/storage_inspector/indexeddb/indexed_db_details.png b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_details.png new file mode 100644 index 0000000000..8cb4602a26 Binary files /dev/null and b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_details.png differ diff --git a/devtools/docs/user/storage_inspector/indexeddb/indexed_db_table_widget_context.png b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_table_widget_context.png new file mode 100644 index 0000000000..6c243c1816 Binary files /dev/null and b/devtools/docs/user/storage_inspector/indexeddb/indexed_db_table_widget_context.png differ diff --git a/devtools/docs/user/storage_inspector/indexeddb/indexeddb_delete_warning.png b/devtools/docs/user/storage_inspector/indexeddb/indexeddb_delete_warning.png new file mode 100644 index 0000000000..8e4dc2c30f Binary files /dev/null and b/devtools/docs/user/storage_inspector/indexeddb/indexeddb_delete_warning.png differ -- cgit v1.2.3