WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
236273
AX: When updating the isolated tree with a remove and add of the same object, the wrapper is not re-attached
https://bugs.webkit.org/show_bug.cgi?id=236273
Summary
AX: When updating the isolated tree with a remove and add of the same object,...
Tyler Wilcock
Reported
2022-02-07 16:53:22 PST
In AXIsolatedTree::applyPendingChanges, we process node and subtree removals before tree additions. When doing these removals, we detach the object and wrapper from each other. This is fine unless that same object is slated to be added again (e.g. it was moved in the DOM), as we don't always re-attach a wrapper. [WebAccessibilityObjectWrapperBase axBackingObject] will always return nil for objects in this state.
Attachments
Patch
(3.53 KB, patch)
2022-02-07 17:00 PST
,
Tyler Wilcock
no flags
Details
Formatted Diff
Diff
Patch
(4.15 KB, patch)
2022-02-07 20:53 PST
,
Tyler Wilcock
no flags
Details
Formatted Diff
Diff
Patch
(4.17 KB, patch)
2022-02-07 21:10 PST
,
Tyler Wilcock
ews-feeder
: commit-queue-
Details
Formatted Diff
Diff
Show Obsolete
(2)
View All
Add attachment
proposed patch, testcase, etc.
Radar WebKit Bug Importer
Comment 1
2022-02-07 16:53:36 PST
<
rdar://problem/88601894
>
Tyler Wilcock
Comment 2
2022-02-07 17:00:41 PST
Created
attachment 451175
[details]
Patch
Andres Gonzalez
Comment 3
2022-02-07 18:20:25 PST
(In reply to Tyler Wilcock from
comment #2
)
> Created
attachment 451175
[details]
> Patch
- if (!item.isolatedObject->wrapper()) { - // The new object hasn't been attached a wrapper yet, so attach it. + // If the new object hasn't been attached to a wrapper yet, or if it was detached from + // the wrapper when processing removals above, we must attach / re-attach it. + if (!item.isolatedObject->wrapper() || detachedObjectIDs.contains(axID)) item.isolatedObject->attachPlatformWrapper(wrapper.get()); Good catch! I think though that it would be a better solution to check for whether the wrapper has an isolatedObject, and if not, attach the isolated object to the wrapper, instead of creating this new collection and looking up the AXID.
Tyler Wilcock
Comment 4
2022-02-07 20:53:40 PST
Created
attachment 451204
[details]
Patch
Tyler Wilcock
Comment 5
2022-02-07 21:10:54 PST
Created
attachment 451206
[details]
Patch
EWS
Comment 6
2022-02-08 05:26:30 PST
Committed
r289368
(
246956@main
): <
https://commits.webkit.org/246956@main
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 451206
[details]
.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug