зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1320997 - Ignore disconnected iframe nsPIDOMWindowOuters in TabGroup::GetTopLevelWindows, r=smaug
MozReview-Commit-ID: 8wQSmcS1sUn
This commit is contained in:
Родитель
d0789ff793
Коммит
780cf8ac3d
|
@ -146,7 +146,8 @@ TabGroup::GetTopLevelWindows()
|
|||
nsTArray<nsPIDOMWindowOuter*> array;
|
||||
|
||||
for (nsPIDOMWindowOuter* outerWindow : mWindows) {
|
||||
if (!outerWindow->GetScriptableParentOrNull()) {
|
||||
if (outerWindow->GetDocShell() &&
|
||||
!outerWindow->GetScriptableParentOrNull()) {
|
||||
array.AppendElement(outerWindow);
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче