зеркало из https://github.com/mozilla/gecko-dev.git
bug 204615: Editor hangs when pasting a list fragment. r=brade sr=dveditz
This commit is contained in:
Родитель
435c455611
Коммит
6c794eecb3
|
@ -2816,14 +2816,14 @@ nsHTMLEditor::ReplaceOrphanedStructure(PRBool aEnd,
|
|||
nsIDOMNode* nsHTMLEditor::GetArrayEndpoint(PRBool aEnd,
|
||||
nsCOMArray<nsIDOMNode>& aNodeArray)
|
||||
{
|
||||
PRInt32 listCount = aNodeArray.Count();
|
||||
if (listCount <= 0)
|
||||
return nsnull;
|
||||
|
||||
if (aEnd)
|
||||
{
|
||||
PRInt32 listCount = aNodeArray.Count();
|
||||
if (listCount <= 0) return nsnull;
|
||||
else return aNodeArray[listCount-1];
|
||||
}
|
||||
else
|
||||
{
|
||||
return aNodeArray[0];
|
||||
return aNodeArray[listCount-1];
|
||||
}
|
||||
|
||||
return aNodeArray[0];
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче