Skip to content

Commit 363ff30

Browse files
committed
bump protocol
1 parent c1db20f commit 363ff30

3 files changed

Lines changed: 31 additions & 3 deletions

File tree

pages/_data/tot.json

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -373,8 +373,36 @@
373373
},
374374
{
375375
"name": "getFullAXTree",
376-
"description": "Fetches the entire accessibility tree",
376+
"description": "Fetches the entire accessibility tree for the root Document",
377377
"experimental": true,
378+
"parameters": [
379+
{
380+
"name": "max_depth",
381+
"description": "The maximum depth at which descendants of the root node should be retrieved.\nIf omitted, the full tree is returned.",
382+
"optional": true,
383+
"type": "integer"
384+
}
385+
],
386+
"returns": [
387+
{
388+
"name": "nodes",
389+
"type": "array",
390+
"items": {
391+
"$ref": "AXNode"
392+
}
393+
}
394+
]
395+
},
396+
{
397+
"name": "getChildAXNodes",
398+
"description": "Fetches a particular accessibility node by AXNodeId.\nRequires `enable()` to have been called previously.",
399+
"experimental": true,
400+
"parameters": [
401+
{
402+
"name": "id",
403+
"$ref": "AXNodeId"
404+
}
405+
],
378406
"returns": [
379407
{
380408
"name": "nodes",

pages/tot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ There is no backwards compatibility support guaranteed for the capabilities it i
1010

1111
<h5 browser>Latest <a
1212
href="https://chromium.googlesource.com/chromium/src/+log/master/third_party/blink/renderer/core/inspector/browser_protocol.json">browser_protocol.json</a> version updated:</h5>
13-
<code browser>Date: 2020-11-30 20:16:12 -0800
13+
<code browser>Date: 2020-12-02 05:16:13 -0800
1414
</code>
1515

1616
<h5 js>Latest <a

search_index/tot.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)