Bug 20887 - Legend tag should be exposed through AX
Summary: Legend tag should be exposed through AX
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: Accessibility (show other bugs)
Version: 528+ (Nightly build)
Hardware: Mac OS X 10.5
: P3 Normal
Assignee: Nobody
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2008-09-16 11:04 PDT by chris fleizach
Modified: 2008-09-19 13:25 PDT (History)
0 users

See Also:


Attachments
Expose <legend> tag in AX (10.90 KB, patch)
2008-09-18 17:48 PDT, chris fleizach
darin: review-
Details | Formatted Diff | Diff
<legend> patch, updated based on review (11.72 KB, patch)
2008-09-19 09:08 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 2008-09-16 11:04:44 PDT
the object in AX representing the field set should have its title ui element set to the legend tag (if there is a legend tag)
Comment 1 chris fleizach 2008-09-18 17:48:50 PDT
Created attachment 23548 [details]
Expose <legend> tag in AX
Comment 2 Darin Adler 2008-09-18 23:30:25 PDT
Comment on attachment 23548 [details]
Expose <legend> tag in AX

 427     Node *element = m_renderer->element();

Should be Node*, not "Node *".

 1061     if (isFieldset())
 1062         return axObjectCache()->get(static_cast<RenderFieldset*>(m_renderer)->findLegend());

This assumes that the renderer will be a RenderFieldset because the tag is fieldsetTag. Why is that a safe assumption? Instead, both function should be looking at hte renderer, and neither should be asking what the tag name is.

Patch otherwise looks fine. review- because of the DOM/Renderer assumption.
Comment 3 chris fleizach 2008-09-19 09:08:13 PDT
Created attachment 23566 [details]
<legend> patch, updated based on review
Comment 4 Darin Adler 2008-09-19 12:13:15 PDT
Comment on attachment 23566 [details]
<legend> patch, updated based on review

     virtual bool isWidget() const { return false; }
-
+    virtual bool isFieldset() const { return false; }

The rest of these are in alphabetical order. It would be better if you sorted your new one in rather than putting it at the bottom.

r=me
Comment 5 chris fleizach 2008-09-19 13:25:46 PDT
http://trac.webkit.org/changeset/36670