зеркало из https://github.com/mozilla/gecko-dev.git
Bug 806996 part.2 nsTextStateManager::IsManaging() should check if mRootContent is still in the mEditableNode r=smaug
This commit is contained in:
Родитель
78368740b1
Коммит
b57311f4d0
|
@ -753,6 +753,11 @@ bool
|
|||
nsTextStateManager::IsManaging(nsPresContext* aPresContext,
|
||||
nsIContent* aContent)
|
||||
{
|
||||
// If mRootContent has been removed from mEditableNode, this is not managing
|
||||
// the content actually.
|
||||
if (!mRootContent || !mRootContent->IsInDoc()) {
|
||||
return false;
|
||||
}
|
||||
return mEditableNode == nsIMEStateManager::GetRootEditableNode(aPresContext,
|
||||
aContent);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче