Don't do incremental reflow for now, because tables can't deal. Followup for

bug 378480, r+sr=roc
This commit is contained in:
bzbarsky%mit.edu 2007-04-26 05:33:34 +00:00
Родитель 6a879894af
Коммит 1fa365d87f
1 изменённых файлов: 3 добавлений и 1 удалений

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

@ -203,7 +203,9 @@ nsSimplePageSequenceFrame::Reflow(nsPresContext* aPresContext,
aStatus = NS_FRAME_COMPLETE; // we're always complete
if (!(GetStateBits() & (NS_FRAME_IS_DIRTY | NS_FRAME_HAS_DIRTY_CHILDREN))) {
// Don't do incremental reflow until we've taught tables how to do
// it right in paginated mode.
if (!(GetStateBits() & NS_FRAME_FIRST_REFLOW)) {
// Return our desired size
aDesiredSize.height = mSize.height;
aDesiredSize.width = mSize.width;