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 957 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
968 { | 968 { |
969 "name": "enable", | 969 "name": "enable", |
970 "description": "Enables reporting of execution contexts creation
by means of <code>executionContextCreated</code> event. When the reporting gets
enabled the event will be sent immediately for each existing execution context.
" | 970 "description": "Enables reporting of execution contexts creation
by means of <code>executionContextCreated</code> event. When the reporting gets
enabled the event will be sent immediately for each existing execution context.
" |
971 }, | 971 }, |
972 { | 972 { |
973 "name": "disable", | 973 "name": "disable", |
974 "hidden": true, | 974 "hidden": true, |
975 "description": "Disables reporting of execution contexts creatio
n." | 975 "description": "Disables reporting of execution contexts creatio
n." |
976 }, | 976 }, |
977 { | 977 { |
| 978 "name": "isRunRequired", |
| 979 "returns": [ |
| 980 { "name": "result", "type": "boolean", "description": "True
if the Runtime is in paused on start state." } |
| 981 ], |
| 982 "hidden": true |
| 983 }, |
| 984 { |
978 "name": "setCustomObjectFormatterEnabled", | 985 "name": "setCustomObjectFormatterEnabled", |
979 "parameters": [ | 986 "parameters": [ |
980 { | 987 { |
981 "name": "enabled", | 988 "name": "enabled", |
982 "type": "boolean" | 989 "type": "boolean" |
983 } | 990 } |
984 ], | 991 ], |
985 "hidden": true | 992 "hidden": true |
986 }, | 993 }, |
987 { | 994 { |
(...skipping 3288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4276 "name": "disable" | 4283 "name": "disable" |
4277 }, | 4284 }, |
4278 { | 4285 { |
4279 "name": "sendMessageToWorker", | 4286 "name": "sendMessageToWorker", |
4280 "parameters": [ | 4287 "parameters": [ |
4281 { "name": "workerId", "type": "string" }, | 4288 { "name": "workerId", "type": "string" }, |
4282 { "name": "message", "type": "string" } | 4289 { "name": "message", "type": "string" } |
4283 ] | 4290 ] |
4284 }, | 4291 }, |
4285 { | 4292 { |
4286 "name": "setWaitForDebuggerOnStart", | 4293 "name": "connectToWorker", |
| 4294 "parameters": [ |
| 4295 { "name": "workerId", "type": "string" } |
| 4296 ] |
| 4297 }, |
| 4298 { |
| 4299 "name": "disconnectFromWorker", |
| 4300 "parameters": [ |
| 4301 { "name": "workerId", "type": "string" } |
| 4302 ] |
| 4303 }, |
| 4304 { |
| 4305 "name": "setAutoconnectToWorkers", |
4287 "parameters": [ | 4306 "parameters": [ |
4288 { "name": "value", "type": "boolean" } | 4307 { "name": "value", "type": "boolean" } |
4289 ] | 4308 ] |
4290 } | 4309 } |
4291 ], | 4310 ], |
4292 "events": [ | 4311 "events": [ |
4293 { | 4312 { |
4294 "name": "workerCreated", | 4313 "name": "workerCreated", |
4295 "parameters": [ | 4314 "parameters": [ |
4296 { "name": "workerId", "type": "string" }, | 4315 { "name": "workerId", "type": "string" }, |
4297 { "name": "url", "type": "string" }, | 4316 { "name": "url", "type": "string" }, |
4298 { "name": "waitingForDebugger", "type": "boolean" } | 4317 { "name": "inspectorConnected", "type": "boolean" } |
4299 ] | 4318 ] |
4300 }, | 4319 }, |
4301 { | 4320 { |
4302 "name": "workerTerminated", | 4321 "name": "workerTerminated", |
4303 "parameters": [ | 4322 "parameters": [ |
4304 { "name": "workerId", "type": "string" } | 4323 { "name": "workerId", "type": "string" } |
4305 ] | 4324 ] |
4306 }, | 4325 }, |
4307 { | 4326 { |
4308 "name": "dispatchMessageFromWorker", | 4327 "name": "dispatchMessageFromWorker", |
(...skipping 938 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5247 ], | 5266 ], |
5248 "returns": [ | 5267 "returns": [ |
5249 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 5268 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
5250 ], | 5269 ], |
5251 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 5270 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
5252 "hidden": true | 5271 "hidden": true |
5253 } | 5272 } |
5254 ] | 5273 ] |
5255 }] | 5274 }] |
5256 } | 5275 } |
OLD | NEW |