mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Bug 1055667 part 2 - Remove unnecessary param of SetBSizeFromFontMetrics. r=dbaron
--HG-- extra : source : aa79c8cebf3e2ab0fd4335eaa3c630a43dbe81f2
This commit is contained in:
parent
f79b36964b
commit
f923809d78
@ -7796,8 +7796,7 @@ nsLayoutUtils::IsOutlineStyleAutoEnabled()
|
||||
/* static */ void
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(const nsIFrame* aFrame,
|
||||
nsHTMLReflowMetrics& aMetrics,
|
||||
const nsHTMLReflowState& aReflowState,
|
||||
LogicalMargin aFramePadding,
|
||||
const LogicalMargin& aFramePadding,
|
||||
WritingMode aLineWM,
|
||||
WritingMode aFrameWM)
|
||||
{
|
||||
@ -7825,6 +7824,5 @@ nsLayoutUtils::SetBSizeFromFontMetrics(const nsIFrame* aFrame,
|
||||
}
|
||||
aMetrics.SetBlockStartAscent(aMetrics.BlockStartAscent() +
|
||||
aFramePadding.BStart(aFrameWM));
|
||||
aMetrics.BSize(aLineWM) +=
|
||||
aReflowState.ComputedLogicalBorderPadding().BStartEnd(aFrameWM);
|
||||
aMetrics.BSize(aLineWM) += aFramePadding.BStartEnd(aFrameWM);
|
||||
}
|
||||
|
@ -2540,8 +2540,7 @@ public:
|
||||
|
||||
static void SetBSizeFromFontMetrics(const nsIFrame* aFrame,
|
||||
nsHTMLReflowMetrics& aMetrics,
|
||||
const nsHTMLReflowState& aReflowState,
|
||||
mozilla::LogicalMargin aFramePadding,
|
||||
const mozilla::LogicalMargin& aFramePadding,
|
||||
mozilla::WritingMode aLineWM,
|
||||
mozilla::WritingMode aFrameWM);
|
||||
|
||||
|
@ -244,8 +244,7 @@ nsFirstLetterFrame::Reflow(nsPresContext* aPresContext,
|
||||
aMetrics.ISize(lineWM) = ll->EndSpan(this) + bp.IStartEnd(wm);
|
||||
ll->SetInFirstLetter(false);
|
||||
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aMetrics, aReflowState,
|
||||
bp, lineWM, wm);
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aMetrics, bp, lineWM, wm);
|
||||
}
|
||||
|
||||
// Ensure that the overflow rect contains the child textframe's overflow rect.
|
||||
|
@ -733,7 +733,7 @@ nsInlineFrame::ReflowFrames(nsPresContext* aPresContext,
|
||||
aMetrics.ISize(lineWM) += framePadding.IEnd(frameWM);
|
||||
}
|
||||
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aMetrics, aReflowState,
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aMetrics,
|
||||
framePadding, lineWM, frameWM);
|
||||
|
||||
// For now our overflow area is zero. The real value will be
|
||||
|
@ -497,7 +497,7 @@ nsRubyBaseContainerFrame::Reflow(nsPresContext* aPresContext,
|
||||
lineLayout->EndLineReflow();
|
||||
}
|
||||
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aDesiredSize, aReflowState,
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aDesiredSize,
|
||||
borderPadding, lineWM, frameWM);
|
||||
}
|
||||
|
||||
|
@ -204,7 +204,7 @@ nsRubyFrame::Reflow(nsPresContext* aPresContext,
|
||||
MOZ_ASSERT(!NS_FRAME_OVERFLOW_IS_INCOMPLETE(aStatus));
|
||||
|
||||
aDesiredSize.ISize(lineWM) = aReflowState.mLineLayout->EndSpan(this);
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aDesiredSize, aReflowState,
|
||||
nsLayoutUtils::SetBSizeFromFontMetrics(this, aDesiredSize,
|
||||
borderPadding, lineWM, frameWM);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user