| // Copyright 2015 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| [ |
| ImplementedAs=InternalsAccessibility |
| ] partial interface Internals { |
| unsigned long numberOfLiveAXObjects(); |
| |
| // Get the computed accessible label of the given element. |
| // See https://w3c.github.io/webdriver/#dfn-get-computed-label |
| DOMString getComputedLabel(Element element); |
| |
| // Get the computed accessible role of the given element. |
| // See https://w3c.github.io/webdriver/#dfn-get-computed-role |
| DOMString getComputedRole(Element element); |
| }; |