Bug 1531693 - Relax the assertion for another editor handling the composition to take account of cycle collection. r=masayuki

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Mark Banner 2019-03-23 11:54:24 +00:00
Родитель 134a6c11a6
Коммит a07272112f
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -651,7 +651,7 @@ void TextComposition::EndHandlingComposition(EditorBase* aEditorBase) {
#ifdef DEBUG
RefPtr<EditorBase> editorBase = GetEditorBase();
MOZ_ASSERT(editorBase == aEditorBase,
MOZ_ASSERT(!editorBase || editorBase == aEditorBase,
"Another editor handled the composition?");
#endif // #ifdef DEBUG
mEditorBaseWeak = nullptr;