This commit is contained in:
kipp%netscape.com 1999-03-05 04:26:40 +00:00
Родитель bdfaebdcc6
Коммит 462a9f99e0
2 изменённых файлов: 8 добавлений и 6 удалений

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

@ -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;

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

@ -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;