diff --git a/layout/generic/nsBlockFrame.cpp b/layout/generic/nsBlockFrame.cpp index c9a879f1319a..a8cff430c136 100644 --- a/layout/generic/nsBlockFrame.cpp +++ b/layout/generic/nsBlockFrame.cpp @@ -439,6 +439,18 @@ nsBlockFrame::List(FILE* out, PRInt32 aIndent) const fprintf(out, " pst=%s", NS_LossyConvertUTF16toASCII(atomString).get()); } + if (IsTransformed()) { + fprintf(out, " transformed"); + } + if (ChildrenHavePerspective()) { + fprintf(out, " perspective"); + } + if (Preserves3DChildren()) { + fprintf(out, " preserves-3d-children"); + } + if (Preserves3D()) { + fprintf(out, " preserves-3d"); + } fputs("<\n", out); aIndent++;