diff options
Diffstat (limited to 'layout/generic/nsFrameSetFrame.cpp')
-rw-r--r-- | layout/generic/nsFrameSetFrame.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/layout/generic/nsFrameSetFrame.cpp b/layout/generic/nsFrameSetFrame.cpp index 4315b9b8af..a3970b5a98 100644 --- a/layout/generic/nsFrameSetFrame.cpp +++ b/layout/generic/nsFrameSetFrame.cpp @@ -699,13 +699,14 @@ nsHTMLFramesetFrame::ReflowPlaceChild(nsIFrame* aChild, nsReflowStatus status; ReflowChild(aChild, aPresContext, reflowOutput, reflowInput, aOffset.x, - aOffset.y, 0, status); + aOffset.y, ReflowChildFlags::Default, status); NS_ASSERTION(NS_FRAME_IS_COMPLETE(status), "bad status"); // Place and size the child reflowOutput.Width() = aSize.width; reflowOutput.Height() = aSize.height; - FinishReflowChild(aChild, aPresContext, reflowOutput, nullptr, aOffset.x, aOffset.y, 0); + FinishReflowChild(aChild, aPresContext, reflowOutput, nullptr, aOffset.x, + aOffset.y, ReflowChildFlags::Default); } static |