Dump out next and style context pointers

This commit is contained in:
kipp%netscape.com 1999-04-27 22:11:21 +00:00
Родитель 9b854acf63
Коммит 0da5bdd171
2 изменённых файлов: 8 добавлений и 0 удалений

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

@ -590,6 +590,9 @@ nsContainerFrame::List(FILE* out, PRInt32 aIndent) const
if (nsnull != view) {
fprintf(out, " [view=%p]", view);
}
if (nsnull != mNextSibling) {
fprintf(out, " next=%p", mNextSibling);
}
if (nsnull != mPrevInFlow) {
fprintf(out, " prev-in-flow=%p", mPrevInFlow);
}
@ -600,6 +603,7 @@ nsContainerFrame::List(FILE* out, PRInt32 aIndent) const
if (0 != mState) {
fprintf(out, " [state=%08x]", mState);
}
fprintf(out, " sc=%p", mStyleContext);
// Output the children
nsIAtom* listName = nsnull;

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

@ -590,6 +590,9 @@ nsContainerFrame::List(FILE* out, PRInt32 aIndent) const
if (nsnull != view) {
fprintf(out, " [view=%p]", view);
}
if (nsnull != mNextSibling) {
fprintf(out, " next=%p", mNextSibling);
}
if (nsnull != mPrevInFlow) {
fprintf(out, " prev-in-flow=%p", mPrevInFlow);
}
@ -600,6 +603,7 @@ nsContainerFrame::List(FILE* out, PRInt32 aIndent) const
if (0 != mState) {
fprintf(out, " [state=%08x]", mState);
}
fprintf(out, " sc=%p", mStyleContext);
// Output the children
nsIAtom* listName = nsnull;