[Webkit-unassigned] [Bug 129787] New: AX: supportsARIAExpanded should always return true for a few roles: treeitem, combobox, disclosure, and treegrid->row

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Thu Mar 6 00:45:40 PST 2014


https://bugs.webkit.org/show_bug.cgi?id=129787

           Summary: AX: supportsARIAExpanded should always return true for
                    a few roles: treeitem, combobox, disclosure, and
                    treegrid->row
           Product: WebKit
           Version: 528+ (Nightly build)
          Platform: All
        OS/Version: All
            Status: NEW
          Severity: Normal
          Priority: P2
         Component: Accessibility
        AssignedTo: webkit-unassigned at lists.webkit.org
        ReportedBy: jcraig at apple.com
                CC: webkit-bug-importer at group.apple.com


AX: supportsARIAExpanded should always return true for a few roles: treeitem, combobox, disclosure. Currently it's:

bool AccessibilityObject::supportsARIAExpanded() const
{
    // Undefined values should not result in this attribute being exposed to ATs unless.
    const AtomicString& expanded = getAttribute(aria_expandedAttr);
    return equalIgnoringCase(expanded, "true") || equalIgnoringCase(expanded, "false");
}

To whoever fixes this, run the inspector-protocol layout tests in addition to the accessibility tests.

-- 
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.



More information about the webkit-unassigned mailing list