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 3513 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3524 ], | 3524 ], |
3525 "description": "JavaScript call stack, including async stack tra
ces.", | 3525 "description": "JavaScript call stack, including async stack tra
ces.", |
3526 "hidden": true | 3526 "hidden": true |
3527 }, | 3527 }, |
3528 { | 3528 { |
3529 "id": "Scope", | 3529 "id": "Scope", |
3530 "type": "object", | 3530 "type": "object", |
3531 "properties": [ | 3531 "properties": [ |
3532 { "name": "type", "type": "string", "enum": ["global", "loca
l", "with", "closure", "catch", "block", "script"], "description": "Scope type."
}, | 3532 { "name": "type", "type": "string", "enum": ["global", "loca
l", "with", "closure", "catch", "block", "script"], "description": "Scope type."
}, |
3533 { "name": "object", "$ref": "Runtime.RemoteObject", "descrip
tion": "Object representing the scope. For <code>global</code> and <code>with</c
ode> scopes it represents the actual object; for the rest of the scopes, it is a
rtificial transient object enumerating scope variables as its properties." }, | 3533 { "name": "object", "$ref": "Runtime.RemoteObject", "descrip
tion": "Object representing the scope. For <code>global</code> and <code>with</c
ode> scopes it represents the actual object; for the rest of the scopes, it is a
rtificial transient object enumerating scope variables as its properties." }, |
3534 { "name": "name", "type": "string", "optional": true, "hidde
n": true } | 3534 { "name": "name", "type": "string", "optional": true, "hidde
n": true }, |
| 3535 { "name": "startLocation", "$ref": "Location", "optional": t
rue, "hidden": true, "description": "Location in the source code where scope sta
rts" }, |
| 3536 { "name": "endLocation", "$ref": "Location", "optional": tru
e, "hidden": true, "description": "Location in the source code where scope ends"
} |
3535 ], | 3537 ], |
3536 "description": "Scope description." | 3538 "description": "Scope description." |
3537 }, | 3539 }, |
3538 { | 3540 { |
3539 "id": "SetScriptSourceError", | 3541 "id": "SetScriptSourceError", |
3540 "type": "object", | 3542 "type": "object", |
3541 "properties": [ | 3543 "properties": [ |
3542 { "name": "message", "type": "string", "description": "Compi
ler error message" }, | 3544 { "name": "message", "type": "string", "description": "Compi
ler error message" }, |
3543 { "name": "lineNumber", "type": "integer", "description": "C
ompile error line number (1-based)" }, | 3545 { "name": "lineNumber", "type": "integer", "description": "C
ompile error line number (1-based)" }, |
3544 { "name": "columnNumber", "type": "integer", "description":
"Compile error column number (1-based)" } | 3546 { "name": "columnNumber", "type": "integer", "description":
"Compile error column number (1-based)" } |
(...skipping 1746 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5291 ], | 5293 ], |
5292 "returns": [ | 5294 "returns": [ |
5293 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } | 5295 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio
n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o
ptional": true } |
5294 ], | 5296 ], |
5295 "description": "Fetches the accessibility node for this DOM node
, if it exists.", | 5297 "description": "Fetches the accessibility node for this DOM node
, if it exists.", |
5296 "hidden": true | 5298 "hidden": true |
5297 } | 5299 } |
5298 ] | 5300 ] |
5299 }] | 5301 }] |
5300 } | 5302 } |
OLD | NEW |