зеркало из https://github.com/mozilla/pjs.git
Bug 287677 dropping unknown scheme on a tab produces 2 errors, rather than 1, r=mconnor
This commit is contained in:
Родитель
3830a64de6
Коммит
e88b9043c8
|
@ -1652,10 +1652,13 @@
|
|||
else {
|
||||
// Load in an existing tab.
|
||||
var tab = aEvent.target;
|
||||
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
|
||||
|
||||
if (this.mCurrentTab != tab && !bgLoad)
|
||||
this.selectedTab = tab;
|
||||
try {
|
||||
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
|
||||
if (this.mCurrentTab != tab && !bgLoad)
|
||||
this.selectedTab = tab;
|
||||
} catch(ex) {
|
||||
// Just ignore invalid urls
|
||||
}
|
||||
}
|
||||
}
|
||||
]]>
|
||||
|
|
Загрузка…
Ссылка в новой задаче