Bug 1761469: BrowserHost::GetTopLevelDocAccessible: Return null if mRoot is null. r=eeejay

Differential Revision: https://phabricator.services.mozilla.com/D142186
This commit is contained in:
James Teh 2022-04-11 23:19:16 +00:00
Родитель f95812a08f
Коммит 57ea3e3fe6
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -56,7 +56,7 @@ nsILoadContext* BrowserHost::GetLoadContext() const {
bool BrowserHost::CanRecv() const { return mRoot && mRoot->CanRecv(); }
a11y::DocAccessibleParent* BrowserHost::GetTopLevelDocAccessible() const {
return mRoot->GetTopLevelDocAccessible();
return mRoot ? mRoot->GetTopLevelDocAccessible() : nullptr;
}
void BrowserHost::LoadURL(nsDocShellLoadState* aLoadState) {