Bug 561010. nsIContent::List should output the flags and primary frame of the node. r=sicking

This commit is contained in:
Timothy Nikkel
2010-05-01 13:42:47 -05:00
parent 459df42560
commit 6896a654b1
2 changed files with 4 additions and 0 deletions

View File

@@ -4803,6 +4803,8 @@ nsGenericElement::List(FILE* out, PRInt32 aIndent,
ListAttributes(out);
fprintf(out, " intrinsicstate=[%08x]", IntrinsicState());
fprintf(out, " flags=[%08x]", GetFlags());
fprintf(out, " primaryframe=%p", static_cast<void*>(GetPrimaryFrame()));
fprintf(out, " refcount=%d<", mRefCnt.get());
PRUint32 i, length = GetChildCount();