RESOLVED FIXED238460
AX: Don't detach children in AXIsolatedTree::applyPendingChanges for nodes being updated (removed and added)
https://bugs.webkit.org/show_bug.cgi?id=238460
Summary AX: Don't detach children in AXIsolatedTree::applyPendingChanges for nodes be...
Tyler Wilcock
Reported 2022-03-28 10:52:08 PDT
In AXIsolatedTree::updateNode, we perform the update by queuing the node to be removed, and then queueing it to be added. When performing the removal in AXIsolatedTree::applyPendingChanges, we call AXCoreObject::detach, which unconditionally calls AXCoreObject::detachRemoteParts. Specifically, AXIsolatedObject::detachRemoteParts detaches all the object's children from the itself (by setting their m_parentID to zero). Then, when we start applying m_pendingAppends, we re-add the object, but never re-attach the children, resulting in a broken tree.
Attachments
Patch (6.70 KB, patch)
2022-03-28 11:06 PDT, Tyler Wilcock
no flags
Patch (14.66 KB, patch)
2022-03-28 19:07 PDT, Tyler Wilcock
no flags
Patch (14.83 KB, patch)
2022-03-29 08:38 PDT, Tyler Wilcock
no flags
Radar WebKit Bug Importer
Comment 1 2022-03-28 10:52:19 PDT
Tyler Wilcock
Comment 2 2022-03-28 11:06:38 PDT
Tyler Wilcock
Comment 3 2022-03-28 19:07:16 PDT
Andres Gonzalez
Comment 4 2022-03-29 04:30:47 PDT
(In reply to Tyler Wilcock from comment #3) > Created attachment 455979 [details] > Patch --- a/Source/WebCore/accessibility/isolatedtree/AXIsolatedTree.cpp +++ a/Source/WebCore/accessibility/isolatedtree/AXIsolatedTree.cpp @@ -307,7 +307,7 @@ void AXIsolatedTree::updateNode(AXCoreObject& axObject) - m_pendingNodeRemovals.append(axID); + m_pendingNodeRemovals.append(std::make_pair(axID, AccessibilityDetachmentType::ElementChanged)); Can we use an initializer list for the pair? m_pendingNodeRemovals.append({ axID, AccessibilityDetachmentType::ElementChanged }); @@ -545,10 +545,11 @@ void AXIsolatedTree::applyPendingChanges() + auto axID = removal.first; Don't need this local variable.
Tyler Wilcock
Comment 5 2022-03-29 08:38:19 PDT
EWS
Comment 6 2022-03-29 17:35:36 PDT
Committed r292086 (249013@main): <https://commits.webkit.org/249013@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 456028 [details].
Note You need to log in before you can comment on or make changes to this bug.