Bug 346405. Handle reparenting of empty float lists. r+sr=dbaron

This commit is contained in:
roc+@cs.cmu.edu 2007-07-18 21:32:08 -07:00
Родитель 32a3b83c42
Коммит 6088c2756c
1 изменённых файлов: 4 добавлений и 0 удалений

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

@ -252,6 +252,10 @@ nsInlineFrame::ReparentFloatsForInlineChild(nsIFrame* aOurLineContainer,
NS_ASSERTION(aOurLineContainer->GetNextContinuation() ||
aOurLineContainer->GetPrevContinuation(),
"Don't call this when we have no continuation, it's a waste");
if (!aFrame) {
NS_ASSERTION(aReparentSiblings, "Why did we get called?");
return;
}
nsIFrame* ancestor = aFrame;
nsIFrame* ancestorBlockChild;