Bug 1599304: Make SpecialPowers.Focus check for availability of this.manager.rootFrameLoader before dereferencing it. r=kmag

Differential Revision: https://phabricator.services.mozilla.com/D54648

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Brad Werth 2019-11-26 22:31:20 +00:00
Родитель e37c828f9c
Коммит b724f12298
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -577,7 +577,9 @@ class SpecialPowersParent extends JSWindowActorParent {
return undefined;
case "SpecialPowers.Focus":
this.manager.rootFrameLoader.ownerElement.focus();
if (this.manager.rootFrameLoader) {
this.manager.rootFrameLoader.ownerElement.focus();
}
return undefined;
case "SpecialPowers.CreateFiles":