diff --git a/doc/api/inspector.md b/doc/api/inspector.md index 95ddad0e93..939351ec38 100644 --- a/doc/api/inspector.md +++ b/doc/api/inspector.md @@ -602,6 +602,48 @@ This feature is only available with the `--experimental-network-inspection` flag Broadcasts the `Network.loadingFailed` event to connected frontends. This event indicates that HTTP request has failed to load. +### `inspector.Network.webSocketCreated([params])` + + + +* `params` {Object} + +This feature is only available with the `--experimental-network-inspection` flag enabled. + +Broadcasts the `Network.webSocketCreated` event to connected frontends. This event indicates that +a WebSocket connection has been initiated. + +### `inspector.Network.webSocketHandshakeResponseReceived([params])` + + + +* `params` {Object} + +This feature is only available with the `--experimental-network-inspection` flag enabled. + +Broadcasts the `Network.webSocketHandshakeResponseReceived` event to connected frontends. +This event indicates that the WebSocket handshake response has been received. + +### `inspector.Network.webSocketClosed([params])` + + + +* `params` {Object} + +This feature is only available with the `--experimental-network-inspection` flag enabled. + +Broadcasts the `Network.webSocketClosed` event to connected frontends. +This event indicates that a WebSocket connection has been closed. + ### `inspector.NetworkResources.put`