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 3692 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3703 { "name": "scopeNumber", "type": "integer", "description": "
0-based number of scope as was listed in scope chain. Only 'local', 'closure' an
d 'catch' scope types are allowed. Other scopes could be manipulated manually."
}, | 3703 { "name": "scopeNumber", "type": "integer", "description": "
0-based number of scope as was listed in scope chain. Only 'local', 'closure' an
d 'catch' scope types are allowed. Other scopes could be manipulated manually."
}, |
3704 { "name": "variableName", "type": "string", "description": "
Variable name." }, | 3704 { "name": "variableName", "type": "string", "description": "
Variable name." }, |
3705 { "name": "newValue", "$ref": "Runtime.CallArgument", "descr
iption": "New variable value." }, | 3705 { "name": "newValue", "$ref": "Runtime.CallArgument", "descr
iption": "New variable value." }, |
3706 { "name": "callFrameId", "$ref": "CallFrameId", "optional":
true, "description": "Id of callframe that holds variable." }, | 3706 { "name": "callFrameId", "$ref": "CallFrameId", "optional":
true, "description": "Id of callframe that holds variable." }, |
3707 { "name": "functionObjectId", "$ref": "Runtime.RemoteObjectI
d", "optional": true, "description": "Object id of closure (function) that holds
variable." } | 3707 { "name": "functionObjectId", "$ref": "Runtime.RemoteObjectI
d", "optional": true, "description": "Object id of closure (function) that holds
variable." } |
3708 ], | 3708 ], |
3709 "hidden": true, | 3709 "hidden": true, |
3710 "description": "Changes value of variable in a callframe or a cl
osure. Either callframe or function must be specified. Object-based scopes are n
ot supported and must be mutated manually." | 3710 "description": "Changes value of variable in a callframe or a cl
osure. Either callframe or function must be specified. Object-based scopes are n
ot supported and must be mutated manually." |
3711 }, | 3711 }, |
3712 { | 3712 { |
3713 "name": "getStepInPositions", | |
3714 "parameters": [ | |
3715 { "name": "callFrameId", "$ref": "CallFrameId", "description
": "Id of a call frame where the current statement should be analized" } | |
3716 ], | |
3717 "returns": [ | |
3718 { "name": "stepInPositions", "type": "array", "items": { "$r
ef": "Location" }, "optional": true, "description": "experimental" } | |
3719 ], | |
3720 "hidden": true, | |
3721 "description": "Lists all positions where step-in is possible fo
r a current statement in a specified call frame" | |
3722 }, | |
3723 { | |
3724 "name": "getBacktrace", | 3713 "name": "getBacktrace", |
3725 "returns": [ | 3714 "returns": [ |
3726 { "name": "callFrames", "type": "array", "items": { "$ref":
"CallFrame" }, "description": "Call stack the virtual machine stopped on." }, | 3715 { "name": "callFrames", "type": "array", "items": { "$ref":
"CallFrame" }, "description": "Call stack the virtual machine stopped on." }, |
3727 { "name": "asyncStackTrace", "$ref": "Runtime.StackTrace", "
optional": true, "description": "Async stack trace, if any." } | 3716 { "name": "asyncStackTrace", "$ref": "Runtime.StackTrace", "
optional": true, "description": "Async stack trace, if any." } |
3728 ], | 3717 ], |
3729 "hidden": true, | 3718 "hidden": true, |
3730 "description": "Returns call stack including variables changed s
ince VM was paused. VM must be paused." | 3719 "description": "Returns call stack including variables changed s
ince VM was paused. VM must be paused." |
3731 }, | 3720 }, |
3732 { | 3721 { |
3733 "name": "setAsyncCallStackDepth", | 3722 "name": "setAsyncCallStackDepth", |
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5166 ], | 5155 ], |
5167 "returns": [ | 5156 "returns": [ |
5168 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 5157 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
5169 ], | 5158 ], |
5170 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 5159 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
5171 "hidden": true | 5160 "hidden": true |
5172 } | 5161 } |
5173 ] | 5162 ] |
5174 }] | 5163 }] |
5175 } | 5164 } |
OLD | NEW |