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:
Oriol Brufau 2022-04-07 23:44:49 +00:00
Родитель 45e9eef39f
Коммит 6a8eb0943c
1 изменённых файлов: 4 добавлений и 1 удалений

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

@ -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);