| Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
|
| diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
|
| index 0b1380b8a34ebc8876addab98f770a5f94da5093..4c3e3d42c0f0ba27e40f7fc29a75fa8364a1fe45 100644
|
| --- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
|
| +++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/desktop_automation_handler.js
|
| @@ -46,14 +46,19 @@ DesktopAutomationHandler = function(node) {
|
| this.addListener_(e.activedescendantchanged, this.onActiveDescendantChanged);
|
| this.addListener_(e.alert, this.onAlert);
|
| this.addListener_(e.ariaAttributeChanged, this.onEventIfInRange);
|
| + this.addListener_(e.autocorrectionOccured, this.onEventIfInRange);
|
| this.addListener_(e.checkedStateChanged, this.onCheckedStateChanged);
|
| this.addListener_(e.childrenChanged, this.onActiveDescendantChanged);
|
| + this.addListener_(e.expandedChanged, this.onEventIfInRange);
|
| this.addListener_(e.focus, this.onFocus);
|
| this.addListener_(e.hover, this.onHover);
|
| + this.addListener_(e.invalidStatusChanged, this.onEventIfInRange);
|
| this.addListener_(e.loadComplete, this.onLoadComplete);
|
| this.addListener_(e.menuEnd, this.onMenuEnd);
|
| this.addListener_(e.menuListItemSelected, this.onEventIfSelected);
|
| this.addListener_(e.menuStart, this.onMenuStart);
|
| + this.addListener_(e.rowCollapsed, this.onEventIfInRange);
|
| + this.addListener_(e.rowExpanded, this.onEventIfInRange);
|
| this.addListener_(e.scrollPositionChanged, this.onScrollPositionChanged);
|
| this.addListener_(e.selection, this.onSelection);
|
| this.addListener_(e.textChanged, this.onTextChanged);
|
|
|