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

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

Issue 2351443003: Revert of Show ancestor hierarchy in accessibility panel (Closed)
Patch Set: 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": "getAXNodeChain", 4225 "name": "getAXNode",
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)." }
4229 ], 4228 ],
4230 "returns": [ 4229 "returns": [
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." } 4230 { "name": "accessibilityNode", "$ref": "AXNode", "descriptio n": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "o ptional": true }
4232 ], 4231 ],
4233 "description": "Fetches the accessibility node for this DOM node , if it exists.", 4232 "description": "Fetches the accessibility node for this DOM node , if it exists.",
4234 "experimental": true 4233 "experimental": true
4235 } 4234 }
4236 ] 4235 ]
4237 }, 4236 },
4238 { 4237 {
4239 "domain": "Storage", 4238 "domain": "Storage",
4240 "experimental": true, 4239 "experimental": true,
4241 "types": [ 4240 "types": [
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
4503 "description": "Informs that port was successfully bound and got a specified connection id.", 4502 "description": "Informs that port was successfully bound and got a specified connection id.",
4504 "parameters": [ 4503 "parameters": [
4505 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." }, 4504 {"name": "port", "type": "integer", "description": "Port num ber that was successfully bound." },
4506 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." } 4505 {"name": "connectionId", "type": "string", "description": "C onnection id to be used." }
4507 ], 4506 ],
4508 "handlers": ["browser"] 4507 "handlers": ["browser"]
4509 } 4508 }
4510 ] 4509 ]
4511 }] 4510 }]
4512 } 4511 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698