Bug 1769481 - Fix PanelMultiView console warnings. r=Gijs

Differential Revision: https://phabricator.services.mozilla.com/D146393
This commit is contained in:
Shane Hughes 2022-05-16 15:23:30 +00:00
Родитель 2d6e577801
Коммит 0fed91f39d
1 изменённых файлов: 3 добавлений и 0 удалений

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

@ -1810,6 +1810,9 @@ var PanelView = class extends AssociatedToNode {
return false;
}
let context = contextNode.getAttribute("context");
if (!context) {
return false;
}
let popup = this.document.getElementById(context);
return popup && popup.state == "open";
};