You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For more details, see the official CDP documentation: [Network.loadNetworkResource](https://chromedevtools.github.io/devtools-protocol/tot/Network/#method-loadNetworkResource)
684
684
685
+
### `inspector.DOMStorage.domStorageItemAdded`
686
+
687
+
<!-- YAML
688
+
added:
689
+
- REPLACEME
690
+
-->
691
+
692
+
*`params` {Object}
693
+
*`storageId` {Object}
694
+
*`securityOrigin` {string}
695
+
*`storageKey` {string}
696
+
*`isLocalStorage` {boolean}
697
+
*`key` {string}
698
+
*`newValue` {string}
699
+
700
+
This feature is only available with the
701
+
`--experimental-storage-inspection` flag enabled.
702
+
703
+
Broadcasts the `DOMStorage.domStorageItemAdded` event to connected frontends.
704
+
This event indicates that a new item has been added to the storage.
705
+
706
+
### `inspector.DOMStorage.domStorageItemRemoved`
707
+
708
+
<!-- YAML
709
+
added:
710
+
- REPLACEME
711
+
-->
712
+
713
+
*`params` {Object}
714
+
*`storageId` {Object}
715
+
*`securityOrigin` {string}
716
+
*`storageKey` {string}
717
+
*`isLocalStorage` {boolean}
718
+
*`key` {string}
719
+
720
+
This feature is only available with the
721
+
`--experimental-storage-inspection` flag enabled.
722
+
723
+
Broadcasts the `DOMStorage.domStorageItemRemoved` event to connected frontends.
724
+
This event indicates that an item has been removed from the storage.
725
+
726
+
### `inspector.DOMStorage.domStorageItemUpdated`
727
+
728
+
<!-- YAML
729
+
added:
730
+
- REPLACEME
731
+
-->
732
+
733
+
*`params` {Object}
734
+
*`storageId` {Object}
735
+
*`securityOrigin` {string}
736
+
*`storageKey` {string}
737
+
*`isLocalStorage` {boolean}
738
+
*`key` {string}
739
+
*`oldValue` {string}
740
+
*`newValue` {string}
741
+
742
+
This feature is only available with the
743
+
`--experimental-storage-inspection` flag enabled.
744
+
745
+
Broadcasts the `DOMStorage.domStorageItemUpdated` event to connected frontends.
746
+
This event indicates that a storage item has been updated.
747
+
748
+
### `inspector.DOMStorage.domStorageItemsCleared`
749
+
750
+
<!-- YAML
751
+
added:
752
+
- REPLACEME
753
+
-->
754
+
755
+
*`params` {Object}
756
+
*`storageId` {Object}
757
+
*`securityOrigin` {string}
758
+
*`storageKey` {string}
759
+
*`isLocalStorage` {boolean}
760
+
761
+
This feature is only available with the
762
+
`--experimental-storage-inspection` flag enabled.
763
+
764
+
Broadcasts the `DOMStorage.domStorageItemsCleared` event to connected
765
+
frontends. This event indicates that all items have been cleared from the
766
+
storage.
767
+
768
+
### `inspector.DOMStorage.registerStorage`
769
+
770
+
<!-- YAML
771
+
added:
772
+
- REPLACEME
773
+
-->
774
+
775
+
*`params` {Object}
776
+
*`isLocalStorage` {boolean}
777
+
*`storageMap` {Object}
778
+
779
+
This feature is only available with the
780
+
`--experimental-storage-inspection` flag enabled.
781
+
685
782
## Support of breakpoints
686
783
687
784
The Chrome DevTools Protocol [`Debugger` domain][] allows an
0 commit comments