зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1763712 - Prevent getRelatedElement() from passing empty string to getElementById(). r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D143234
This commit is contained in:
Родитель
45e9eef39f
Коммит
6a8eb0943c
|
@ -2093,7 +2093,10 @@
|
|||
// and make it ready to use. We only do this if the tab is selected
|
||||
// because otherwise, callers might end up unintentionally binding the
|
||||
// browser for lazy background tabs.
|
||||
if (aTab.selected) {
|
||||
if (!aTab.linkedPanel) {
|
||||
if (!aTab.selected) {
|
||||
return null;
|
||||
}
|
||||
gBrowser._insertBrowser(aTab);
|
||||
}
|
||||
return document.getElementById(aTab.linkedPanel);
|
||||
|
|
Загрузка…
Ссылка в новой задаче