Dump out next and style context pointers

git-svn-id: svn://10.0.0.236/trunk@29547 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kipp%netscape.com 1999-04-27 22:11:21 +00:00
parent 1ac9d7fd5e
commit ead0f4bfda
2 changed files with 8 additions and 0 deletions

View File

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

View File

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