blob: c81dacefa384c4c78e38be7a645d4e5ae118a043 [file] [log] [blame]
// 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);
};