[Webkit-unassigned] [Bug 218319] AX: aria-describedby not supported for ARIA treeitem role

bugzilla-daemon at webkit.org bugzilla-daemon at webkit.org
Fri Sep 16 10:38:56 PDT 2022


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

Eric Liang <ericliang at apple.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |ericliang at apple.com

--- Comment #3 from Eric Liang <ericliang at apple.com> ---
Comment:

Note that in the provided CodePen example, the empty <div></div> inside the group role div seems making the tree being mapped to a regular group instead of a table in Safari, which could be another WebKit issue. Please verify after removing the empty <div></div> first so that the tree can be mapped to a table correctly, and after the <rdar://problem/73907428> is submitted.

———

Change this two line:

<div role="group" aria-owns="group1-item1 group1-item2 group1-item3" aria-label="Jungle Animals"><div></div></div>

<div role="group" aria-owns="group2-item1 group2-item2" aria-label="Ocean Animals"><div></div></div>

To:

<div role="group" aria-owns="group1-item1 group1-item2 group1-item3" aria-label="Jungle Animals"></div>

<div role="group" aria-owns="group2-item1 group2-item2" aria-label="Ocean Animals"></div>

So that the tree example can be correctly mapped to a table instead of group in Safari.

-- 
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.webkit.org/pipermail/webkit-unassigned/attachments/20220916/ae71aaac/attachment.htm>


More information about the webkit-unassigned mailing list