Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(406)

Side by Side Diff: third_party/WebKit/Source/core/inspector/browser_protocol.json

Issue 2322413003: Show ancestor hierarchy in accessibility panel (Closed)
Patch Set: More minimal Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 { 1 {
2 "version": { "major": "1", "minor": "2" }, 2 "version": { "major": "1", "minor": "2" },
3 "domains": [{ 3 "domains": [{
4 "domain": "Inspector", 4 "domain": "Inspector",
5 "experimental": true, 5 "experimental": 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 4204 matching lines...) Expand 10 before | Expand all | Expand 10 after
4215 { "name": "name", "$ref": "AXValue", "description": "The acc essible name for this <code>Node</code>.", "optional": true }, 4215 { "name": "name", "$ref": "AXValue", "description": "The acc essible name for this <code>Node</code>.", "optional": true },
4216 { "name": "description", "$ref": "AXValue", "description": " The accessible description for this <code>Node</code>.", "optional": true }, 4216 { "name": "description", "$ref": "AXValue", "description": " The accessible description for this <code>Node</code>.", "optional": true },
4217 { "name": "value", "$ref": "AXValue", "description": "The va lue for this <code>Node</code>.", "optional": true }, 4217 { "name": "value", "$ref": "AXValue", "description": "The va lue for this <code>Node</code>.", "optional": true },
4218 { "name": "properties", "type": "array", "items": { "$ref": "AXProperty" }, "description": "All other properties", "optional": true } 4218 { "name": "properties", "type": "array", "items": { "$ref": "AXProperty" }, "description": "All other properties", "optional": true }
4219 ], 4219 ],
4220 "description": "A node in the accessibility tree." 4220 "description": "A node in the accessibility tree."
4221 } 4221 }
4222 ], 4222 ],
4223 "commands": [ 4223 "commands": [
4224 { 4224 {
4225 "name": "getAXNode", 4225 "name": "getAXNodeForDOMNode",
dgozman 2016/09/15 17:45:44 getAXNodeChain
aboxhall 2016/09/15 20:30:08 Done.
4226 "parameters": [ 4226 "parameters": [
4227 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." } 4227 { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." },
4228 { "name": "fetchAncestors", "type": "boolean", "description" : "Whether to also push down a partial tree (parent chain)." }
4228 ], 4229 ],
4229 "returns": [ 4230 "returns": [
4230 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true } 4231 { "name": "nodes", "type": "array", "items": { "$ref": "AXNo de" }, "description": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists, plus ancestors if requested.", "optional": true }
4231 ], 4232 ],
4232 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4233 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4233 "experimental": true 4234 "experimental": true
4234 } 4235 }
4235 ] 4236 ]
4236 }, 4237 },
4237 { 4238 {
4238 "domain": "Storage", 4239 "domain": "Storage",
4239 "experimental": true, 4240 "experimental": true,
4240 "types": [ 4241 "types": [
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
4502 "description": "Informs that port was successfully bound and got a specified connection id.", 4503 "description": "Informs that port was successfully bound and got a specified connection id.",
4503 "parameters": [ 4504 "parameters": [
4504 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4505 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4505 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4506 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4506 ], 4507 ],
4507 "handlers": ["browser"] 4508 "handlers": ["browser"]
4508 } 4509 }
4509 ] 4510 ]
4510 }] 4511 }]
4511 } 4512 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698