even better pagination. Tables with small captions can split, and

simple tables with big cells can split the cell (and it's row)


git-svn-id: svn://10.0.0.236/trunk@615 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
buster
1998-04-24 20:59:44 +00:00
parent 4e90f540f3
commit 68ef434e82
5 changed files with 77 additions and 36 deletions

View File

@@ -795,11 +795,13 @@ nsIFrame::ReflowStatus nsTableFrame::ResizeReflowPass2(nsIPresContext* aPresCont
if (gsDebug==PR_TRUE)
{
if (nsnull!=aMaxElementSize)
printf("Reflow complete, returning aDesiredSize = %d,%d and aMaxElementSize=%d,%d\n",
printf("Reflow complete, returning %s with aDesiredSize = %d,%d and aMaxElementSize=%d,%d\n",
status==frComplete ? "Complete" : "Not Complete",
aDesiredSize.width, aDesiredSize.height,
aMaxElementSize->width, aMaxElementSize->height);
else
printf("Reflow complete, returning aDesiredSize = %d,%d and NSNULL aMaxElementSize\n",
printf("Reflow complete, returning %s with aDesiredSize = %d,%d and NSNULL aMaxElementSize\n",
status==frComplete ? "Complete" : "Not Complete",
aDesiredSize.width, aDesiredSize.height);
}