Home | History | Annotate | Download | only in accessibility

Lines Matching full:child

192     // menuButton and its corresponding menu are DOM siblings, but Accessibility needs them to be parent/child
520 // Find the child radio button that is selected (ie. the intValue == 1).
535 // Find the child tab item that is selected (ie. the intValue == 1).
2631 // selects and listboxes both have options as child roles, but they map to different roles within WebCore
2938 // add an <area> element for this child if it has a link
3029 AccessibilityObject* child = firstChild();
3037 while (child) {
3038 // every child should have aria-role option, and if so, check for selected attribute/state
3039 AccessibilityRole ariaRole = child->ariaRoleAttribute();
3041 if (child->isAccessibilityRenderObject())
3042 childRenderer = static_cast<AccessibilityRenderObject*>(child)->renderer();
3048 result.append(child);
3054 child = child->nextSibling();