clj-chrome-devtools.commands.dom-storage
Query and modify DOM storage.
clear
(clear)
(clear {:as params, :keys [storage-id]})
(clear connection {:as params, :keys [storage-id]})
Parameters map keys:
Key | Description |
---|---|
:storage-id | null |
disable
(disable)
(disable {:as params, :keys []})
(disable connection {:as params, :keys []})
Disables storage tracking, prevents storage events from being sent to the client.
enable
(enable)
(enable {:as params, :keys []})
(enable connection {:as params, :keys []})
Enables storage tracking, storage events will now be delivered to the client.
get-dom-storage-items
(get-dom-storage-items)
(get-dom-storage-items {:as params, :keys [storage-id]})
(get-dom-storage-items connection {:as params, :keys [storage-id]})
Parameters map keys:
Key | Description |
---|---|
:storage-id | null |
Return map keys:
Key | Description |
---|---|
:entries | null |
remove-dom-storage-item
(remove-dom-storage-item)
(remove-dom-storage-item {:as params, :keys [storage-id key]})
(remove-dom-storage-item connection {:as params, :keys [storage-id key]})
Parameters map keys:
Key | Description |
---|---|
:storage-id | null |
:key | null |
set-dom-storage-item
(set-dom-storage-item)
(set-dom-storage-item {:as params, :keys [storage-id key value]})
(set-dom-storage-item connection {:as params, :keys [storage-id key value]})
Parameters map keys:
Key | Description |
---|---|
:storage-id | null |
:key | null |
:value | null |