Bug 1777301 - Fix crash in FontFaceSetDocumentImpl::Destroy due to clearing document reference too early. r=jfkthame

Differential Revision: https://phabricator.services.mozilla.com/D150684
This commit is contained in:
Andrew Osmond 2022-06-30 11:59:15 +00:00
Родитель beec44fed6
Коммит 305c52258d
1 изменённых файлов: 4 добавлений и 2 удалений

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

@ -95,9 +95,11 @@ void FontFaceSetDocumentImpl::Destroy() {
mRuleFaces.Clear();
mDocument = nullptr;
// Since the base class may depend on the document remaining set, we need to
// clear mDocument after.
FontFaceSetImpl::Destroy();
mDocument = nullptr;
}
uint64_t FontFaceSetDocumentImpl::GetInnerWindowID() {