[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
Wed Oct 8 11:58:22 PDT 2014


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





--- Comment #27 from Chris Dumez <cdumez at apple.com>  2014-10-08 11:58:17 PST ---
(From update of attachment 239337)
View in context: https://bugs.webkit.org/attachment.cgi?id=239337&action=review

>> Source/WebCore/accessibility/AccessibilityRenderObject.cpp:2567
>> +    if (node && (node->hasTagName(thTag))) {
> 
> Instead of hasTagName(thTag) we should consider:
> 
>     if (is<HTMLTableHeaderElement>(node))

I don't think we have such class (yet). Sadly, both tdTag and thTag map to the same HTMLTableCellElement class. So currently, if you're only interested in thTag but not tdTag, using hasTagName() is correct. This is something we should likely improve.

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