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.", |
11 "handlers": ["browser", "renderer"] | 11 "handlers": ["browser", "renderer"] |
12 }, | 12 }, |
13 { | 13 { |
14 "name": "disable", | 14 "name": "disable", |
15 "description": "Disables inspector domain notifications." | 15 "description": "Disables inspector domain notifications." |
16 } | 16 } |
17 ], | 17 ], |
18 "events": [ | 18 "events": [ |
19 { | 19 { |
20 "name": "evaluateForTestInFrontend", | |
21 "parameters": [ | |
22 { "name": "testCallId", "type": "integer" }, | |
23 { "name": "script", "type": "string" } | |
24 ] | |
25 }, | |
26 { | |
27 "name": "inspect", | 20 "name": "inspect", |
28 "parameters": [ | 21 "parameters": [ |
29 { "name": "object", "$ref": "Runtime.RemoteObject" }, | 22 { "name": "object", "$ref": "Runtime.RemoteObject" }, |
30 { "name": "hints", "type": "object" } | 23 { "name": "hints", "type": "object" } |
31 ] | 24 ] |
32 }, | 25 }, |
33 { | 26 { |
34 "name": "detached", | 27 "name": "detached", |
35 "description": "Fired when remote debugging connection is about
to be terminated. Contains detach reason.", | 28 "description": "Fired when remote debugging connection is about
to be terminated. Contains detach reason.", |
36 "parameters": [ | 29 "parameters": [ |
(...skipping 5153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5190 ], | 5183 ], |
5191 "returns": [ | 5184 "returns": [ |
5192 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 5185 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
5193 ], | 5186 ], |
5194 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 5187 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
5195 "hidden": true | 5188 "hidden": true |
5196 } | 5189 } |
5197 ] | 5190 ] |
5198 }] | 5191 }] |
5199 } | 5192 } |
OLD | NEW |