Bug 1682141 - Stop searching for top window if there is no top window. r=peterv

Differential Revision: https://phabricator.services.mozilla.com/D99661
This commit is contained in:
Andreas Farre 2020-12-14 13:16:04 +00:00
Родитель e490a7f6ed
Коммит 50115c2697
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -247,6 +247,11 @@ RefPtr<PerformanceInfoPromise> DocGroup::ReportPerformanceInfo() {
}
top = context->Top();
if (!top) {
continue;
}
isTopLevel = context->IsTop();
windowID = top->GetCurrentWindowContext()->OuterWindowId();
break;