Output rects in twips

git-svn-id: svn://10.0.0.236/trunk@22846 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com
1999-03-05 04:26:40 +00:00
parent 65edef0640
commit 3a72fd18c3
2 changed files with 8 additions and 6 deletions

View File

@@ -85,9 +85,10 @@ nsLineBox::List(FILE* out, PRInt32 aIndent) const
if (0 != mCarriedOutBottomMargin) {
fprintf(out, "bm=%d ", mCarriedOutBottomMargin);
}
out << mBounds;
fprintf(out, " ca=");
out << mCombinedArea;
fprintf(out, "{%d,%d,%d,%d} ca={%d,%d,%d,%d}",
mBounds.x, mBounds.y, mBounds.width, mBounds.height,
mCombinedArea.x, mCombinedArea.y,
mCombinedArea.width, mCombinedArea.height);
fprintf(out, " <\n");
nsIFrame* frame = mFirstChild;