| Index: components/ui_devtools/protocol.json
|
| diff --git a/components/ui_devtools/protocol.json b/components/ui_devtools/protocol.json
|
| index 3e4af011c8034ebfcfe9f8ef9c83ee837601eeb1..4f843e1f61b6e0710c6e0f51a2c28cc4de74e7cf 100644
|
| --- a/components/ui_devtools/protocol.json
|
| +++ b/components/ui_devtools/protocol.json
|
| @@ -22,6 +22,46 @@
|
| ]
|
| }
|
| ],
|
| + "events": [
|
| + {
|
| + "name": "childNodeInserted",
|
| + "parameters": [
|
| + {
|
| + "description": "Id of the node that has changed.",
|
| + "name": "parentNodeId",
|
| + "$ref": "NodeId"
|
| + },
|
| + {
|
| +
|
| + "description": "Id of the previous sibling (0 if this is at the beginning of the list).",
|
| + "name": "previousNodeId",
|
| + "$ref": "NodeId"
|
| + },
|
| + {
|
| + "description": "Inserted node data.",
|
| + "name": "node",
|
| + "$ref": "Node"
|
| + }
|
| + ],
|
| + "description": "Mirrors <code>DOMNodeInserted</code> event."
|
| + },
|
| + {
|
| + "name": "childNodeRemoved",
|
| + "parameters": [
|
| + {
|
| + "description": "Parent id.",
|
| + "name": "parentNodeId",
|
| + "$ref": "NodeId"
|
| + },
|
| + {
|
| + "description": "Id of the node that has been removed.",
|
| + "name": "nodeId",
|
| + "$ref": "NodeId"
|
| + }
|
| + ],
|
| + "description": "Mirrors <code>DOMNodeRemoved</code> event."
|
| + }
|
| + ],
|
| "domain": "DOM",
|
| "types": [
|
| {
|
|
|