зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
f95812a08f
Коммит
57ea3e3fe6
|
@ -56,7 +56,7 @@ nsILoadContext* BrowserHost::GetLoadContext() const {
|
||||||
bool BrowserHost::CanRecv() const { return mRoot && mRoot->CanRecv(); }
|
bool BrowserHost::CanRecv() const { return mRoot && mRoot->CanRecv(); }
|
||||||
|
|
||||||
a11y::DocAccessibleParent* BrowserHost::GetTopLevelDocAccessible() const {
|
a11y::DocAccessibleParent* BrowserHost::GetTopLevelDocAccessible() const {
|
||||||
return mRoot->GetTopLevelDocAccessible();
|
return mRoot ? mRoot->GetTopLevelDocAccessible() : nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
void BrowserHost::LoadURL(nsDocShellLoadState* aLoadState) {
|
void BrowserHost::LoadURL(nsDocShellLoadState* aLoadState) {
|
||||||
|
|
Загрузка…
Ссылка в новой задаче