Bug 1492014 test Console::mInnerID instead of mGlobal when needing a window id r=baku

No behavior change intended.

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Karl Tomlinson 2018-09-24 17:19:14 +00:00
Родитель b4ae5484b7
Коммит e6d5b031cb
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -1118,7 +1118,7 @@ Console::Initialize(ErrorResult& aRv)
return;
}
if (mGlobal) {
if (mInnerID) {
aRv = obs->AddObserver(this, "inner-window-destroyed", true);
if (NS_WARN_IF(aRv.Failed())) {
return;
@ -1670,7 +1670,7 @@ Console::MethodInternal(JSContext* aCx, MethodName aMethodName,
}
if (NS_IsMainThread()) {
if (mGlobal) {
if (mInnerID) {
callData->SetIDs(mOuterID, mInnerID);
} else if (!mPassedInnerID.IsEmpty()) {
callData->SetIDs(NS_LITERAL_STRING("jsm"), mPassedInnerID);