Bug 1251863 - Browser Console focuses wrong window. r=lclark

This commit is contained in:
Ricky Chien 2016-03-27 00:19:00 +01:00
Родитель 89043461bf
Коммит f4e9875565
1 изменённых файлов: 7 добавлений и 5 удалений

Просмотреть файл

@ -589,11 +589,13 @@ WebConsole.prototype = {
}
let onDestroy = Task.async(function*() {
try {
yield this.target.activeTab.focus()
}
catch (ex) {
// Tab focus can fail if the tab or target is closed.
if (!this._browserConsole) {
try {
yield this.target.activeTab.focus();
}
catch (ex) {
// Tab focus can fail if the tab or target is closed.
}
}
let id = WebConsoleUtils.supportsString(this.hudId);