HomeSort by relevance Sort by last modified time
    Searched refs:activeDescendant (Results 1 - 8 of 8) sorted by null

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/extensions/searchvox/
util.js 74 var activeId = targetNode.getAttribute('aria-activedescendant');
101 // A circlar activeDescendant is an error, so return null.
125 // If there is an activeDescendant of the targetNode, then that is where the
127 var activeDescendant = getActiveDescendant(targetNode);
128 if (activeDescendant) {
129 targetNode = activeDescendant;
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXRenderObject.h 124 virtual AXObject* activeDescendant() const OVERRIDE;
AXObject.h 422 virtual AXObject* activeDescendant() const { return 0; }
AXRenderObject.cpp 917 AXObject* AXRenderObject::activeDescendant() const
939 // An activedescendant is only useful if it has a renderer, because that's what's needed to post the notification.
    [all...]
AXObjectCache.cpp 182 if (AXObject* descendant = obj->activeDescendant())
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
dom_util.js 820 var activeDescendant = cvox.AriaUtil.getActiveDescendant(node);
821 if (activeDescendant) {
823 cvox.DomUtil.getValue(activeDescendant) + ' ' +
824 cvox.DomUtil.getName(activeDescendant));
    [all...]
aria_util.js 543 var activeDescendant = cvox.AriaUtil.getActiveDescendant(parentControl);
545 if (activeDescendant) {
552 if (gridcells[k] == activeDescendant) {
574 var activeId = targetNode.getAttribute('aria-activedescendant');
659 // A circlar activeDescendant is an error, so return null.
  /external/chromium_org/third_party/WebKit/Source/web/
WebAXObject.cpp 424 return WebAXObject(m_private->activeDescendant());

Completed in 1537 milliseconds