зеркало из https://github.com/mozilla/gecko-dev.git
Dump out next and style context pointers
This commit is contained in:
Родитель
9b854acf63
Коммит
0da5bdd171
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче