Bug 1078665: Ignore exceptions thrown out of getBrowserForDocument. r=zombie

This commit is contained in:
Dave Townsend 2014-10-06 13:56:58 -07:00
Родитель 015b238d7a
Коммит dc512d32ce
1 изменённых файлов: 8 добавлений и 4 удалений

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

@ -35,10 +35,14 @@ function getWindow(anchor) {
}
// Check if the anchor is in a browser tab in this browser window.
let browser = enumWindow.gBrowser.getBrowserForDocument(anchorDocument);
if (browser) {
window = enumWindow;
break;
try {
let browser = enumWindow.gBrowser.getBrowserForDocument(anchorDocument);
if (browser) {
window = enumWindow;
break;
}
}
catch (e) {
}
// Look in other subdocuments (sidebar, etc.)?