Commit 91d0a2f7 authored by Aaron Leventhal's avatar Aaron Leventhal Committed by Commit Bot

Revert change that causes performance regression in Slack

Bug: 936944
Change-Id: I3eed83b7c69b804f577ba6ea9097a6be205fc898
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1506758
Commit-Queue: Aaron Leventhal <aleventhal@chromium.org>
Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org>
Reviewed-by: default avatarDominic Mazzoni <dmazzoni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#638331}
parent 0013260b
...@@ -730,7 +730,9 @@ void AXObjectCacheImpl::FocusableChanged(Element* element) { ...@@ -730,7 +730,9 @@ void AXObjectCacheImpl::FocusableChanged(Element* element) {
ChildrenChanged(element->parentNode()); ChildrenChanged(element->parentNode());
} else { } else {
// Refresh the focusable state on the exposed object. // Refresh the focusable state on the exposed object.
MarkAXObjectDirty(obj, false); // TODO(accessibility) find out why using MarkAXObjectDirty(obj, false)
// regresses Slack performance, see https://crbug.com/936944.
PostNotification(obj, ax::mojom::Event::kValueChanged);
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment