/
githubmirror
/
node
Обзор
Документация
Войти
/
githubmirror
/
node
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/inspector/domain_dom_storage.pdl
65 строк
1 KB
Ryuhei Shima
inspector: initial support storage inspection
23 янв 2026, 17:51
Не верифицирован
23 янв 2026, 17:51
ec56413
Код
Авторство
О чём код?
experimental domain DOMStorage type SerializedStorageKey extends string # DOM Storage identifier. type StorageId extends object properties # Security origin for the storage. optional string securityOrigin # Represents a key by which DOM Storage keys its CachedStorageAreas optional SerializedStorageKey storageKey # Whether the storage is local storage (not session storage). boolean isLocalStorage # DOM Storage item. type Item extends array of string command clear parameters StorageId storageId # Disables storage tracking, prevents storage events from being sent to the client. command disable # Enables storage tracking, storage events will now be delivered to the client. command enable command getDOMStorageItems parameters StorageId storageId returns array of Item entries command removeDOMStorageItem parameters StorageId storageId string key command setDOMStorageItem parameters StorageId storageId string key string value event domStorageItemAdded parameters StorageId storageId string key string newValue event domStorageItemRemoved parameters StorageId storageId string key event domStorageItemUpdated parameters StorageId storageId string key string oldValue string newValue event domStorageItemsCleared parameters StorageId storageId