Bug 1626526 - [remote] Don't emit internal network request events for invalid top frame elements. r=remote-protocol-reviewers,maja_zf

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Henrik Skupin 2020-04-01 13:29:15 +00:00
Родитель bd12f9cf60
Коммит 0598c8a005
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -246,7 +246,8 @@ class NetworkObserver {
const loadContext = getLoadContext(httpChannel);
if (
!loadContext ||
!this._browserSessionCount.has(loadContext.topFrameElement)
!this._browserSessionCount.has(loadContext.topFrameElement) ||
!loadContext.topFrameElement.currentURI
) {
return;
}