OLD | NEW |
1 { | 1 { |
2 "version": { "major": "1", "minor": "1" }, | 2 "version": { "major": "1", "minor": "1" }, |
3 "domains": [{ | 3 "domains": [{ |
4 "domain": "Inspector", | 4 "domain": "Inspector", |
5 "hidden": true, | 5 "hidden": true, |
6 "types": [], | 6 "types": [], |
7 "commands": [ | 7 "commands": [ |
8 { | 8 { |
9 "name": "enable", | 9 "name": "enable", |
10 "description": "Enables inspector domain notifications." | 10 "description": "Enables inspector domain notifications." |
(...skipping 3330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3341 "name": "removeDOMBreakpoint", | 3341 "name": "removeDOMBreakpoint", |
3342 "parameters": [ | 3342 "parameters": [ |
3343 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id
entifier of the node to remove breakpoint from." }, | 3343 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "Id
entifier of the node to remove breakpoint from." }, |
3344 { "name": "type", "$ref": "DOMBreakpointType", "description"
: "Type of the breakpoint to remove." } | 3344 { "name": "type", "$ref": "DOMBreakpointType", "description"
: "Type of the breakpoint to remove." } |
3345 ], | 3345 ], |
3346 "description": "Removes DOM breakpoint that was set using <code>
setDOMBreakpoint</code>." | 3346 "description": "Removes DOM breakpoint that was set using <code>
setDOMBreakpoint</code>." |
3347 }, | 3347 }, |
3348 { | 3348 { |
3349 "name": "setEventListenerBreakpoint", | 3349 "name": "setEventListenerBreakpoint", |
3350 "parameters": [ | 3350 "parameters": [ |
3351 { "name": "eventName", "type": "string", "description": "DOM
Event name to stop on (any DOM event will do)." }, | 3351 { "name": "eventName", "type": "string", "description": "DOM
Event name to stop on (any DOM event will do)." } |
3352 { "name": "targetName", "type": "string", "optional": true,
"description": "EventTarget interface name to stop on. If equal to <code>\"*\"</
code> or not provided, will stop on any EventTarget.", "hidden": true } | |
3353 ], | 3352 ], |
3354 "description": "Sets breakpoint on particular DOM event." | 3353 "description": "Sets breakpoint on particular DOM event." |
3355 }, | 3354 }, |
3356 { | 3355 { |
3357 "name": "removeEventListenerBreakpoint", | 3356 "name": "removeEventListenerBreakpoint", |
3358 "parameters": [ | 3357 "parameters": [ |
3359 { "name": "eventName", "type": "string", "description": "Eve
nt name." }, | 3358 { "name": "eventName", "type": "string", "description": "Eve
nt name." } |
3360 { "name": "targetName", "type": "string", "optional": true,
"description": "EventTarget interface name.", "hidden": true } | |
3361 ], | 3359 ], |
3362 "description": "Removes breakpoint on particular DOM event." | 3360 "description": "Removes breakpoint on particular DOM event." |
3363 }, | 3361 }, |
3364 { | 3362 { |
3365 "name": "setInstrumentationBreakpoint", | 3363 "name": "setInstrumentationBreakpoint", |
3366 "parameters": [ | 3364 "parameters": [ |
3367 { "name": "eventName", "type": "string", "description": "Ins
trumentation name to stop on." } | 3365 { "name": "eventName", "type": "string", "description": "Ins
trumentation name to stop on." } |
3368 ], | 3366 ], |
3369 "description": "Sets breakpoint on particular native event.", | 3367 "description": "Sets breakpoint on particular native event.", |
3370 "hidden": true | 3368 "hidden": true |
(...skipping 818 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4189 { | 4187 { |
4190 "name": "dataAvailable", | 4188 "name": "dataAvailable", |
4191 "parameters": [ | 4189 "parameters": [ |
4192 {"name": "value", "type": "array", "items": { "$ref": "Power
Event" }, "description": "List of power events." } | 4190 {"name": "value", "type": "array", "items": { "$ref": "Power
Event" }, "description": "List of power events." } |
4193 ], | 4191 ], |
4194 "handlers": ["browser", "frontend"] | 4192 "handlers": ["browser", "frontend"] |
4195 } | 4193 } |
4196 ] | 4194 ] |
4197 }] | 4195 }] |
4198 } | 4196 } |
OLD | NEW |