Bug 82819 - search field on Google.com does not have the AXSearchField subrole
Summary: search field on Google.com does not have the AXSearchField subrole
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Accessibility (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac Unspecified
: P2 Normal
Assignee: chris fleizach
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-03-30 19:42 PDT by chris fleizach
Modified: 2012-04-03 00:16 PDT (History)
0 users

See Also:


Attachments
patch (7.33 KB, patch)
2012-03-31 00:33 PDT, chris fleizach
darin: review+
Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description chris fleizach 2012-03-30 19:42:16 PDT
Search fields do not have the AXSubrole: AXSearchField
Comment 1 chris fleizach 2012-03-31 00:33:05 PDT
Created attachment 134948 [details]
patch
Comment 2 Darin Adler 2012-04-02 12:26:33 PDT
Comment on attachment 134948 [details]
patch

View in context: https://bugs.webkit.org/attachment.cgi?id=134948&action=review

> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:506
> +    // Some websites don't label their search fields as search, so we should fallback to some heuristics.

This comment doesn’t explain why these heuristics are helpful. Nor why these heuristics are sufficient.

> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:508
> +    String nameAttribute = getAttribute(nameAttr);

const AtomicString& nameAttribute = fastGetAttribute(nameAttr);

> LayoutTests/platform/mac/accessibility/search-subrole-expected.txt:15
> +PASS nosearch.subrole is 'AXSubrole: '

Could use more coverage for the negative. For example, an element that is not in any form.

Need coverage for the “not case sensitive” aspect. All these are all lowercase so the “false” for case sensitive is not tested at all.
Comment 3 chris fleizach 2012-04-03 00:16:00 PDT
http://trac.webkit.org/changeset/112989