This commit is contained in:
Wes Kocher 2014-10-21 18:51:22 -07:00
Родитель 19f5510e91 c367a078a7
Коммит 0dbdde564f
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -116,7 +116,7 @@ add_task(function() {
let urlBarContainer = document.getElementById("urlbar-container");
// Need to make sure not to click within an edit field.
let urlbarRect = urlBarContainer.getBoundingClientRect();
EventUtils.synthesizeMouse(urlBarContainer, 100, urlbarRect.height - 1, {type: "contextmenu", button: 2 });
EventUtils.synthesizeMouse(urlBarContainer, 100, 1, {type: "contextmenu", button: 2 });
yield shownPromise;
let expectedEntries = [

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

@ -285,7 +285,7 @@ BrowserTabList.prototype._getBrowsers = function*() {
};
BrowserTabList.prototype._getChildren = function(aWindow) {
return aWindow.gBrowser.browsers;
return aWindow.gBrowser ? aWindow.gBrowser.browsers : [];
};
BrowserTabList.prototype._isRemoteBrowser = function(browser) {