synchronize the view of a table cell if we dont realign the cell content vertically, bug 237734, r/sr=roc a=chofmann

This commit is contained in:
bmlk%gmx.de 2004-03-28 15:13:31 +00:00
Родитель 26b1761add
Коммит 1a0dd341a6
2 изменённых файлов: 8 добавлений и 2 удалений

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

@ -1321,7 +1321,10 @@ nsTableRowFrame::IR_TargetIsChild(nsIPresContext* aPresContext,
if (cellKidFrame) {
cellFrame->ConsiderChildOverflow(aPresContext, cellMet.mOverflowArea, cellKidFrame);
cellFrame->StoreOverflow(aPresContext, cellMet);
}
if (cellFrame->HasView()) {
nsContainerFrame::SyncFrameViewAfterReflow(aPresContext, cellFrame, cellFrame->GetView(), &cellMet.mOverflowArea, 0);
}
}
}
}
else

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

@ -1321,7 +1321,10 @@ nsTableRowFrame::IR_TargetIsChild(nsIPresContext* aPresContext,
if (cellKidFrame) {
cellFrame->ConsiderChildOverflow(aPresContext, cellMet.mOverflowArea, cellKidFrame);
cellFrame->StoreOverflow(aPresContext, cellMet);
}
if (cellFrame->HasView()) {
nsContainerFrame::SyncFrameViewAfterReflow(aPresContext, cellFrame, cellFrame->GetView(), &cellMet.mOverflowArea, 0);
}
}
}
}
else