Changeset 273328 in webkit
- Timestamp:
- Feb 23, 2021 12:04:05 PM (17 months ago)
- Location:
- trunk
- Files:
-
- 2 added
- 3 edited
-
LayoutTests/ChangeLog (modified) (1 diff)
-
LayoutTests/accessibility/mac/treeitem-row-delegation-expected.txt (added)
-
LayoutTests/accessibility/mac/treeitem-row-delegation.html (added)
-
Source/WebCore/ChangeLog (modified) (1 diff)
-
Source/WebCore/accessibility/AccessibilityObject.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/LayoutTests/ChangeLog
r273318 r273328 1 2021-02-23 Chris Fleizach <cfleizach@apple.com> 2 3 AX: VoiceOver incorrectly announces groups in ARIA tree instances as empty 4 https://bugs.webkit.org/show_bug.cgi?id=221716 5 <rdar://problem/74205567> 6 7 Reviewed by Zalan Bujtas. 8 9 * accessibility/mac/treeitem-row-delegation-expected.txt: Added. 10 * accessibility/mac/treeitem-row-delegation.html: Added. 11 1 12 2021-02-22 Ryan Haddad <ryanhaddad@apple.com> 2 13 -
trunk/Source/WebCore/ChangeLog
r273314 r273328 1 2021-02-23 Chris Fleizach <cfleizach@apple.com> 2 3 AX: VoiceOver incorrectly announces groups in ARIA tree instances as empty 4 https://bugs.webkit.org/show_bug.cgi?id=221716 5 <rdar://problem/74205567> 6 7 Reviewed by Zalan Bujtas. 8 9 ARIA treeitems are allowed to have a child group that can represent the disclosed rows, which are disclosed through aria-owns. 10 11 Test: accessibility/mac/treeitem-row-delegation.html 12 13 * accessibility/AccessibilityObject.cpp: 14 (WebCore::AccessibilityObject::ariaTreeRows): 15 1 16 2021-02-23 Rob Buis <rbuis@igalia.com> 2 17 -
trunk/Source/WebCore/accessibility/AccessibilityObject.cpp
r273214 r273328 1695 1695 void AccessibilityObject::ariaTreeRows(AccessibilityChildrenVector& result) 1696 1696 { 1697 // If the element specifies its tree rows through aria-owns, return that first. 1698 AccessibilityChildrenVector ariaOwns; 1699 ariaOwnsElements(ariaOwns); 1700 if (ariaOwns.size()) { 1701 result.appendVector(ariaOwns); 1702 return; 1703 } 1704 1697 1705 for (const auto& child : children()) { 1698 1706 // Add tree items as the rows.
Note: See TracChangeset
for help on using the changeset viewer.