| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 // The <code>chrome.automation</code> API allows developers to access the | 5 // The <code>chrome.automation</code> API allows developers to access the |
| 6 // automation (accessibility) tree for the browser. The tree resembles the DOM | 6 // automation (accessibility) tree for the browser. The tree resembles the DOM |
| 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be | 7 // tree, but only exposes the <em>semantic</em> structure of a page. It can be |
| 8 // used to programmatically interact with a page by examining names, roles, and | 8 // used to programmatically interact with a page by examining names, roles, and |
| 9 // states, listening for events, and performing actions on nodes. | 9 // states, listening for events, and performing actions on nodes. |
| 10 [nocompile] namespace automation { | 10 [nocompile] namespace automation { |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 87 document, | 87 document, |
| 88 embeddedObject, | 88 embeddedObject, |
| 89 figcaption, | 89 figcaption, |
| 90 figure, | 90 figure, |
| 91 footer, | 91 footer, |
| 92 form, | 92 form, |
| 93 grid, | 93 grid, |
| 94 group, | 94 group, |
| 95 heading, | 95 heading, |
| 96 iframe, | 96 iframe, |
| 97 iframePresentational, |
| 97 ignored, | 98 ignored, |
| 98 imageMapLink, | 99 imageMapLink, |
| 99 imageMap, | 100 imageMap, |
| 100 image, | 101 image, |
| 101 inlineTextBox, | 102 inlineTextBox, |
| 102 labelText, | 103 labelText, |
| 103 legend, | 104 legend, |
| 104 link, | 105 link, |
| 105 listBoxOption, | 106 listBoxOption, |
| 106 listBox, | 107 listBox, |
| (...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 480 // tree with a placeholder root node; listen for the "loadComplete" event to | 481 // tree with a placeholder root node; listen for the "loadComplete" event to |
| 481 // get a notification that the tree has fully loaded (the previous root node | 482 // get a notification that the tree has fully loaded (the previous root node |
| 482 // reference will stop working at or before this point). | 483 // reference will stop working at or before this point). |
| 483 [nocompile] static void getTree(optional long tabId, RootCallback callback); | 484 [nocompile] static void getTree(optional long tabId, RootCallback callback); |
| 484 | 485 |
| 485 // Get the automation tree for the whole desktop which consists of all on | 486 // Get the automation tree for the whole desktop which consists of all on |
| 486 // screen views. Note this API is currently only supported on Chrome OS. | 487 // screen views. Note this API is currently only supported on Chrome OS. |
| 487 [nocompile] static void getDesktop(RootCallback callback); | 488 [nocompile] static void getDesktop(RootCallback callback); |
| 488 }; | 489 }; |
| 489 }; | 490 }; |
| OLD | NEW |