зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1078665: Ignore exceptions thrown out of getBrowserForDocument. r=zombie
This commit is contained in:
Родитель
015b238d7a
Коммит
dc512d32ce
|
@ -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.)?
|
||||
|
|
Загрузка…
Ссылка в новой задаче