[Webkit-unassigned] [Bug 136150] [ATK] Changing the mapping of aria rowheader and columnheader into respective ATK roles.

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Sat Oct 4 00:15:35 PDT 2014


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





--- Comment #21 from chris fleizach <cfleizach at apple.com>  2014-10-04 00:15:25 PST ---
(From update of attachment 239114)
View in context: https://bugs.webkit.org/attachment.cgi?id=239114&action=review

> LayoutTests/accessibility/table-roles-hierarchy.html:13
> +    {

brace goes on previous line

> LayoutTests/accessibility/table-roles-hierarchy.html:19
> +    {

brace goes on previous line

> LayoutTests/accessibility/table-roles-hierarchy.html:25
> +    {

brace goes on previous line

> LayoutTests/accessibility/table-roles-hierarchy.html:36
> +          if ( childAXObject.role != "AXRole: AXStaticText")

extra space after (

> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:2573
> +        while (node) {

this can be written as a for loop
for (node = node->parentNode(); node; node = node->parentNode())

> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:2578
> +            if (node->hasTagName(tableTag))

are you sure you want to make a <Table> into a CellRole?

-- 
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