Index: chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js |
diff --git a/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js b/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js |
index 2082446db1475131eb73dc46216c180b5be54407..836c23c51f43ff1f7145c023806a45bca479501f 100644 |
--- a/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js |
+++ b/chrome/browser/resources/chromeos/chromevox/cvox2/background/tabs_automation_handler.js |
@@ -28,7 +28,8 @@ TabsAutomationHandler = function(tabRoot) { |
// When the root is focused, simulate what happens on a load complete. |
if (tabRoot.state.focused) { |
this.onLoadComplete( |
- new chrome.automation.AutomationEvent(EventType.loadComplete, tabRoot)); |
+ new chrome.automation.AutomationEvent(EventType.loadComplete, tabRoot, |
+ 'page')); |
} |
}; |
@@ -44,7 +45,7 @@ TabsAutomationHandler.prototype = { |
onLoadComplete: function(evt) { |
var focused = evt.target.find({state: {focused: true}}) || evt.target; |
this.onFocus(new chrome.automation.AutomationEvent( |
- EventType.focus, focused)); |
+ EventType.focus, focused, evt.eventFrom)); |
} |
}; |