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 956 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
967 { "name": "generatePreview", "type": "boolean", "optional":
true, "hidden": true, "description": "Whether preview should be generated for th
e results." } | 967 { "name": "generatePreview", "type": "boolean", "optional":
true, "hidden": true, "description": "Whether preview should be generated for th
e results." } |
968 ], | 968 ], |
969 "returns": [ | 969 "returns": [ |
970 { "name": "result", "type": "array", "items": { "$ref": "Pro
pertyDescriptor" }, "description": "Object properties." }, | 970 { "name": "result", "type": "array", "items": { "$ref": "Pro
pertyDescriptor" }, "description": "Object properties." }, |
971 { "name": "internalProperties", "optional": true, "type": "a
rray", "items": { "$ref": "InternalPropertyDescriptor" }, "description": "Intern
al object properties (only of the element itself).", "hidden": true }, | 971 { "name": "internalProperties", "optional": true, "type": "a
rray", "items": { "$ref": "InternalPropertyDescriptor" }, "description": "Intern
al object properties (only of the element itself).", "hidden": true }, |
972 { "name": "exceptionDetails", "$ref": "ExceptionDetails", "o
ptional": true, "hidden": true, "description": "Exception details."} | 972 { "name": "exceptionDetails", "$ref": "ExceptionDetails", "o
ptional": true, "hidden": true, "description": "Exception details."} |
973 ], | 973 ], |
974 "description": "Returns properties of a given object. Object gro
up of the result is inherited from the target object." | 974 "description": "Returns properties of a given object. Object gro
up of the result is inherited from the target object." |
975 }, | 975 }, |
976 { | 976 { |
| 977 "name": "getCompletions", |
| 978 "parameters": [ |
| 979 { "name": "objectId", "$ref": "RemoteObjectId", "optional":
true, "description": "Identifier of the object to return completions for." }, |
| 980 { "name": "primitiveType", "type": "string", "enum": [ "stri
ng", "number", "boolean" ], "optional": true, "description": "Type of primitive
value to return completions for." } |
| 981 ], |
| 982 "returns": [ |
| 983 { "name": "completions", "type": "array", "items": { "type":
"string" } } |
| 984 ], |
| 985 "description": "Returns completions of a given object or for giv
en primitive type.", |
| 986 "hidden": true |
| 987 }, |
| 988 { |
977 "name": "releaseObject", | 989 "name": "releaseObject", |
978 "parameters": [ | 990 "parameters": [ |
979 { "name": "objectId", "$ref": "RemoteObjectId", "description
": "Identifier of the object to release." } | 991 { "name": "objectId", "$ref": "RemoteObjectId", "description
": "Identifier of the object to release." } |
980 ], | 992 ], |
981 "description": "Releases remote object with given id." | 993 "description": "Releases remote object with given id." |
982 }, | 994 }, |
983 { | 995 { |
984 "name": "releaseObjectGroup", | 996 "name": "releaseObjectGroup", |
985 "parameters": [ | 997 "parameters": [ |
986 { "name": "objectGroup", "type": "string", "description": "S
ymbolic object group name." } | 998 { "name": "objectGroup", "type": "string", "description": "S
ymbolic object group name." } |
(...skipping 4123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5110 ], | 5122 ], |
5111 "returns": [ | 5123 "returns": [ |
5112 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 5124 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
5113 ], | 5125 ], |
5114 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 5126 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
5115 "hidden": true | 5127 "hidden": true |
5116 } | 5128 } |
5117 ] | 5129 ] |
5118 }] | 5130 }] |
5119 } | 5131 } |
OLD | NEW |