Bug 1827411 - Compilation failure when enabling NOISY_FINAL_SIZE or REALLY_NOISY_REFLOW flags. r=emilio

Differential Revision: https://phabricator.services.mozilla.com/D175210
This commit is contained in:
WhiteMind 2023-04-12 08:40:41 +00:00
parent 58cc5d71c7
commit 073f7a5852
2 changed files with 3 additions and 3 deletions

View File

@ -5753,7 +5753,7 @@ void nsBlockFrame::AppendFrames(ChildListID aListID, nsFrameList&& aFrameList) {
ListTag(stdout);
printf(": append ");
for (nsIFrame* frame : aFrameList) {
frame->ListTag(out);
frame->ListTag(stdout);
}
if (lastKid) {
printf(" after ");
@ -5798,7 +5798,7 @@ void nsBlockFrame::InsertFrames(ChildListID aListID, nsIFrame* aPrevFrame,
ListTag(stdout);
printf(": insert ");
for (nsIFrame* frame : aFrameList) {
frame->ListTag(out);
frame->ListTag(stdout);
}
if (aPrevFrame) {
printf(" after ");

View File

@ -636,7 +636,7 @@ void nsInlineFrame::ReflowFrames(nsPresContext* aPresContext,
#ifdef NOISY_FINAL_SIZE
ListTag(stdout);
printf(": metrics=%d,%d ascent=%d\n", aMetrics.Width(), aMetrics.Height(),
aMetrics.TopAscent());
aMetrics.BlockStartAscent());
#endif
}