Commit f9c17f09 authored by David Tseng's avatar David Tseng Committed by Commit Bot

Do not set input focus for combo boxes when SA focus moves to them

This was done back in
https://chromium-review.googlesource.com/c/chromium/src/+/2231660

likely to support sending arrow keys in a prior iteration to support combo
boxes.

R=dmazzoni@chromium.org

Fixed: 1137612
Change-Id: Iaa974ae8eecafc16612df092a5ebba36031a7d1f
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2472529Reviewed-by: default avatarDominic Mazzoni <dmazzoni@chromium.org>
Commit-Queue: Dominic Mazzoni <dmazzoni@chromium.org>
Commit-Queue: David Tseng <dtseng@chromium.org>
Cr-Commit-Position: refs/heads/master@{#817217}
parent 781d2205
...@@ -36,7 +36,6 @@ class ComboBoxNode extends BasicNode { ...@@ -36,7 +36,6 @@ class ComboBoxNode extends BasicNode {
this.expandedChangedHandler_ = new RepeatedEventHandler( this.expandedChangedHandler_ = new RepeatedEventHandler(
this.automationNode, chrome.automation.EventType.EXPANDED, this.automationNode, chrome.automation.EventType.EXPANDED,
() => this.onExpandedChanged(), {exactMatch: true}); () => this.onExpandedChanged(), {exactMatch: true});
this.automationNode.focus();
} }
/** @override */ /** @override */
......
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