Index: third_party/WebKit/Source/core/inspector/browser_protocol.json |
diff --git a/third_party/WebKit/Source/core/inspector/browser_protocol.json b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
index 295c1146e86522ec144f8b023b712f8f98e1eb6b..20068fb27b640018359b555452b6b0ed3f83f7bb 100644 |
--- a/third_party/WebKit/Source/core/inspector/browser_protocol.json |
+++ b/third_party/WebKit/Source/core/inspector/browser_protocol.json |
@@ -4222,13 +4222,12 @@ |
], |
"commands": [ |
{ |
- "name": "getAXNodeChain", |
- "parameters": [ |
- { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." }, |
- { "name": "fetchAncestors", "type": "boolean", "description": "Whether to also push down a partial tree (parent chain)." } |
- ], |
- "returns": [ |
- { "name": "nodes", "type": "array", "items": { "$ref": "AXNode" }, "description": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists, plus ancestors if requested." } |
+ "name": "getAXNode", |
+ "parameters": [ |
+ { "name": "nodeId", "$ref": "DOM.NodeId", "description": "ID of node to get accessibility node for." } |
+ ], |
+ "returns": [ |
+ { "name": "accessibilityNode", "$ref": "AXNode", "description": "The <code>Accessibility.AXNode</code> for this DOM node, if it exists.", "optional": true } |
], |
"description": "Fetches the accessibility node for this DOM node, if it exists.", |
"experimental": true |