2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2001-10-25 01:08:40 +00:00
|
|
|
// vim:cindent:ts=2:et:sw=2:
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2006-03-29 18:29:03 +00:00
|
|
|
|
|
|
|
/* class that a parent frame uses to reflow a block frame */
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
#include "nsBlockReflowContext.h"
|
|
|
|
#include "nsLineLayout.h"
|
2009-01-05 00:39:54 +00:00
|
|
|
#include "nsFloatManager.h"
|
2004-07-31 23:15:21 +00:00
|
|
|
#include "nsPresContext.h"
|
2004-02-23 21:29:06 +00:00
|
|
|
#include "nsFrameManager.h"
|
1999-04-13 01:15:16 +00:00
|
|
|
#include "nsIContent.h"
|
2003-02-22 00:32:13 +00:00
|
|
|
#include "nsStyleContext.h"
|
2011-12-27 20:18:48 +00:00
|
|
|
#include "nsContainerFrame.h"
|
1999-03-27 01:22:45 +00:00
|
|
|
#include "nsBlockFrame.h"
|
2002-11-28 19:29:28 +00:00
|
|
|
#include "nsLineBox.h"
|
2000-06-14 23:15:59 +00:00
|
|
|
#include "nsIDOMHTMLTableCellElement.h"
|
|
|
|
#include "nsIDOMHTMLBodyElement.h"
|
2007-01-30 00:06:41 +00:00
|
|
|
#include "nsGkAtoms.h"
|
1999-07-14 17:27:24 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2004-11-25 14:51:00 +00:00
|
|
|
#include "nsLayoutUtils.h"
|
1998-12-01 16:13:49 +00:00
|
|
|
|
2012-06-25 19:59:42 +00:00
|
|
|
#ifdef DEBUG
|
1999-03-20 19:38:50 +00:00
|
|
|
#undef NOISY_MAX_ELEMENT_SIZE
|
1999-03-24 15:42:38 +00:00
|
|
|
#undef REALLY_NOISY_MAX_ELEMENT_SIZE
|
1999-03-27 01:22:45 +00:00
|
|
|
#undef NOISY_VERTICAL_MARGINS
|
1999-02-12 17:45:58 +00:00
|
|
|
#else
|
1999-03-20 19:38:50 +00:00
|
|
|
#undef NOISY_MAX_ELEMENT_SIZE
|
1999-03-24 15:42:38 +00:00
|
|
|
#undef REALLY_NOISY_MAX_ELEMENT_SIZE
|
1999-03-27 01:22:45 +00:00
|
|
|
#undef NOISY_VERTICAL_MARGINS
|
1999-02-12 17:45:58 +00:00
|
|
|
#endif
|
|
|
|
|
2004-07-31 23:15:21 +00:00
|
|
|
nsBlockReflowContext::nsBlockReflowContext(nsPresContext* aPresContext,
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
const nsHTMLReflowState& aParentRS)
|
1998-12-01 16:13:49 +00:00
|
|
|
: mPresContext(aPresContext),
|
|
|
|
mOuterReflowState(aParentRS),
|
Bug 300030: Move intrinsic width computation out of nsIFrame::Reflow and into its own methods on nsIFrame. Replace reflow reasons, types, and commands with dirty bits/notifications. Thanks to bzbarsky for almost all of the HTML form controls (mozilla/layout/forms) changes, and many others for help testing and patching. For detailed commit logs, see REFLOW_YYYYMMDD_BRANCH, where YYYYMMDD is one of 20061031, 20060830, 20060603, 20060302, 20060119, 20051011, 20050804, 20050429, 20050315, 20050111, and 20041213.
2006-12-08 05:38:33 +00:00
|
|
|
mMetrics()
|
1998-12-01 16:13:49 +00:00
|
|
|
{
|
1999-03-27 01:22:45 +00:00
|
|
|
}
|
|
|
|
|
2005-08-02 20:05:52 +00:00
|
|
|
static nsIFrame* DescendIntoBlockLevelFrame(nsIFrame* aFrame)
|
|
|
|
{
|
|
|
|
nsIAtom* type = aFrame->GetType();
|
2006-12-26 17:47:52 +00:00
|
|
|
if (type == nsGkAtoms::columnSetFrame)
|
2011-08-24 20:54:30 +00:00
|
|
|
return DescendIntoBlockLevelFrame(aFrame->GetFirstPrincipalChild());
|
2005-08-02 20:05:52 +00:00
|
|
|
return aFrame;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2004-11-25 14:51:00 +00:00
|
|
|
nsBlockReflowContext::ComputeCollapsedTopMargin(const nsHTMLReflowState& aRS,
|
2006-02-27 04:15:05 +00:00
|
|
|
nsCollapsingMargin* aMargin, nsIFrame* aClearanceFrame,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool* aMayNeedRetry, bool* aBlockIsEmpty)
|
1999-03-27 01:22:45 +00:00
|
|
|
{
|
2004-11-25 14:51:00 +00:00
|
|
|
// Include frame's top margin
|
|
|
|
aMargin->Include(aRS.mComputedMargin.top);
|
2001-10-25 01:08:40 +00:00
|
|
|
|
2002-11-28 19:29:28 +00:00
|
|
|
// The inclusion of the bottom margin when empty is done by the caller
|
|
|
|
// since it doesn't need to be done by the top-level (non-recursive)
|
|
|
|
// caller.
|
|
|
|
|
2001-10-25 01:08:40 +00:00
|
|
|
#ifdef NOISY_VERTICAL_MARGINS
|
|
|
|
nsFrame::ListTag(stdout, aRS.frame);
|
2004-11-25 14:51:00 +00:00
|
|
|
printf(": %d => %d\n", aRS.mComputedMargin.top, aMargin->get());
|
2001-10-25 01:08:40 +00:00
|
|
|
#endif
|
1999-03-27 01:22:45 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool dirtiedLine = false;
|
|
|
|
bool setBlockIsEmpty = false;
|
2004-11-25 14:51:00 +00:00
|
|
|
|
|
|
|
// Calculate the frame's generational top-margin from its child
|
|
|
|
// blocks. Note that if the frame has a non-zero top-border or
|
1999-03-27 01:22:45 +00:00
|
|
|
// top-padding then this step is skipped because it will be a margin
|
2000-06-29 22:03:42 +00:00
|
|
|
// root. It is also skipped if the frame is a margin root for other
|
|
|
|
// reasons.
|
2005-08-02 20:05:52 +00:00
|
|
|
nsIFrame* frame = DescendIntoBlockLevelFrame(aRS.frame);
|
2007-03-30 21:11:41 +00:00
|
|
|
nsPresContext* prescontext = frame->PresContext();
|
2012-07-30 14:20:58 +00:00
|
|
|
nsBlockFrame* block = nullptr;
|
2012-07-20 18:27:04 +00:00
|
|
|
if (0 == aRS.mComputedBorderPadding.top) {
|
|
|
|
block = nsLayoutUtils::GetAsBlock(frame);
|
|
|
|
if (block) {
|
|
|
|
bool topMarginRoot, unused;
|
|
|
|
block->IsMarginRoot(&topMarginRoot, &unused);
|
|
|
|
if (topMarginRoot) {
|
2012-07-30 14:20:58 +00:00
|
|
|
block = nullptr;
|
2012-07-20 18:27:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// iterate not just through the lines of 'block' but also its
|
|
|
|
// overflow lines and the normal and overflow lines of its next in
|
|
|
|
// flows. Note that this will traverse some frames more than once:
|
|
|
|
// for example, if A contains B and A->nextinflow contains
|
|
|
|
// B->nextinflow, we'll traverse B->nextinflow twice. But this is
|
|
|
|
// OK because our traversal is idempotent.
|
|
|
|
for ( ;block; block = static_cast<nsBlockFrame*>(block->GetNextInFlow())) {
|
2012-08-09 07:09:40 +00:00
|
|
|
for (int overflowLines = false; overflowLines <= true; ++overflowLines) {
|
2012-07-20 18:27:04 +00:00
|
|
|
nsBlockFrame::line_iterator line;
|
|
|
|
nsBlockFrame::line_iterator line_end;
|
|
|
|
bool anyLines = true;
|
|
|
|
if (overflowLines) {
|
|
|
|
nsBlockFrame::FrameLines* frames = block->GetOverflowLines();
|
2012-07-30 14:20:58 +00:00
|
|
|
nsLineList* lines = frames ? &frames->mLines : nullptr;
|
2012-07-20 18:27:04 +00:00
|
|
|
if (!lines) {
|
|
|
|
anyLines = false;
|
2005-03-23 03:35:08 +00:00
|
|
|
} else {
|
2012-07-20 18:27:04 +00:00
|
|
|
line = lines->begin();
|
|
|
|
line_end = lines->end();
|
2004-11-25 14:51:00 +00:00
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
} else {
|
|
|
|
line = block->begin_lines();
|
|
|
|
line_end = block->end_lines();
|
|
|
|
}
|
|
|
|
for (; anyLines && line != line_end; ++line) {
|
|
|
|
if (!aClearanceFrame && line->HasClearance()) {
|
|
|
|
// If we don't have a clearance frame, then we're computing
|
|
|
|
// the collapsed margin in the first pass, assuming that all
|
|
|
|
// lines have no clearance. So clear their clearance flags.
|
|
|
|
line->ClearHasClearance();
|
|
|
|
line->MarkDirty();
|
|
|
|
dirtiedLine = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isEmpty;
|
|
|
|
if (line->IsInline()) {
|
|
|
|
isEmpty = line->IsEmpty();
|
|
|
|
} else {
|
|
|
|
nsIFrame* kid = line->mFirstChild;
|
|
|
|
if (kid == aClearanceFrame) {
|
|
|
|
line->SetHasClearance();
|
2005-03-23 03:35:08 +00:00
|
|
|
line->MarkDirty();
|
2011-10-17 14:59:28 +00:00
|
|
|
dirtiedLine = true;
|
2012-07-20 18:27:04 +00:00
|
|
|
goto done;
|
2005-03-23 03:35:08 +00:00
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
// Here is where we recur. Now that we have determined that a
|
|
|
|
// generational collapse is required we need to compute the
|
|
|
|
// child blocks margin and so in so that we can look into
|
|
|
|
// it. For its margins to be computed we need to have a reflow
|
|
|
|
// state for it.
|
2005-03-23 03:35:08 +00:00
|
|
|
|
2012-07-20 18:27:04 +00:00
|
|
|
// We may have to construct an extra reflow state here if
|
|
|
|
// we drilled down through a block wrapper. At the moment
|
|
|
|
// we can only drill down one level so we only have to support
|
|
|
|
// one extra reflow state.
|
|
|
|
const nsHTMLReflowState* outerReflowState = &aRS;
|
|
|
|
if (frame != aRS.frame) {
|
|
|
|
NS_ASSERTION(frame->GetParent() == aRS.frame,
|
|
|
|
"Can only drill through one level of block wrapper");
|
|
|
|
nsSize availSpace(aRS.ComputedWidth(), aRS.ComputedHeight());
|
|
|
|
outerReflowState = new nsHTMLReflowState(prescontext,
|
|
|
|
aRS, frame, availSpace);
|
|
|
|
}
|
|
|
|
{
|
|
|
|
nsSize availSpace(outerReflowState->ComputedWidth(),
|
|
|
|
outerReflowState->ComputedHeight());
|
|
|
|
nsHTMLReflowState innerReflowState(prescontext,
|
|
|
|
*outerReflowState, kid,
|
|
|
|
availSpace);
|
|
|
|
// Record that we're being optimistic by assuming the kid
|
|
|
|
// has no clearance
|
|
|
|
if (kid->GetStyleDisplay()->mBreakType != NS_STYLE_CLEAR_NONE) {
|
|
|
|
*aMayNeedRetry = true;
|
|
|
|
}
|
|
|
|
if (ComputeCollapsedTopMargin(innerReflowState, aMargin, aClearanceFrame, aMayNeedRetry, &isEmpty)) {
|
2005-03-23 03:35:08 +00:00
|
|
|
line->MarkDirty();
|
2011-10-17 14:59:28 +00:00
|
|
|
dirtiedLine = true;
|
2005-03-23 03:35:08 +00:00
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
if (isEmpty)
|
|
|
|
aMargin->Include(innerReflowState.mComputedMargin.bottom);
|
2005-03-23 03:35:08 +00:00
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
if (outerReflowState != &aRS) {
|
|
|
|
delete const_cast<nsHTMLReflowState*>(outerReflowState);
|
2006-02-27 04:15:05 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
if (!isEmpty) {
|
|
|
|
if (!setBlockIsEmpty && aBlockIsEmpty) {
|
|
|
|
setBlockIsEmpty = true;
|
|
|
|
*aBlockIsEmpty = false;
|
|
|
|
}
|
|
|
|
goto done;
|
2004-11-25 14:51:00 +00:00
|
|
|
}
|
1999-03-27 01:22:45 +00:00
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
if (!setBlockIsEmpty && aBlockIsEmpty) {
|
|
|
|
// The first time we reach here is when this is the first block
|
|
|
|
// and we have processed all its normal lines.
|
|
|
|
setBlockIsEmpty = true;
|
|
|
|
// All lines are empty, or we wouldn't be here!
|
|
|
|
*aBlockIsEmpty = aRS.frame->IsSelfEmpty();
|
|
|
|
}
|
1999-03-27 01:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
2012-07-20 18:27:04 +00:00
|
|
|
done:
|
2006-02-27 04:15:05 +00:00
|
|
|
|
|
|
|
if (!setBlockIsEmpty && aBlockIsEmpty) {
|
|
|
|
*aBlockIsEmpty = aRS.frame->IsEmpty();
|
|
|
|
}
|
2004-11-25 14:51:00 +00:00
|
|
|
|
1999-03-27 01:22:45 +00:00
|
|
|
#ifdef NOISY_VERTICAL_MARGINS
|
|
|
|
nsFrame::ListTag(stdout, aRS.frame);
|
2005-01-27 20:54:27 +00:00
|
|
|
printf(": => %d\n", aMargin->get());
|
1999-03-27 01:22:45 +00:00
|
|
|
#endif
|
2004-11-25 14:51:00 +00:00
|
|
|
|
|
|
|
return dirtiedLine;
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
|
|
|
|
2000-06-20 03:47:49 +00:00
|
|
|
nsresult
|
2002-09-04 06:55:40 +00:00
|
|
|
nsBlockReflowContext::ReflowBlock(const nsRect& aSpace,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aApplyTopMargin,
|
2004-11-25 14:51:00 +00:00
|
|
|
nsCollapsingMargin& aPrevMargin,
|
|
|
|
nscoord aClearance,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsAdjacentWithTop,
|
2007-08-20 20:07:50 +00:00
|
|
|
nsLineBox* aLine,
|
2002-09-04 06:55:40 +00:00
|
|
|
nsHTMLReflowState& aFrameRS,
|
2007-10-02 05:57:45 +00:00
|
|
|
nsReflowStatus& aFrameReflowStatus,
|
|
|
|
nsBlockReflowState& aState)
|
2000-06-20 03:47:49 +00:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
2002-09-04 06:55:40 +00:00
|
|
|
mFrame = aFrameRS.frame;
|
|
|
|
mSpace = aSpace;
|
|
|
|
|
1998-12-12 17:59:30 +00:00
|
|
|
if (!aIsAdjacentWithTop) {
|
2011-10-17 14:59:28 +00:00
|
|
|
aFrameRS.mFlags.mIsTopOfPage = false; // make sure this is cleared
|
1998-12-12 17:59:30 +00:00
|
|
|
}
|
1999-03-05 04:22:11 +00:00
|
|
|
|
1999-03-27 01:22:45 +00:00
|
|
|
if (aApplyTopMargin) {
|
2004-11-25 14:51:00 +00:00
|
|
|
mTopMargin = aPrevMargin;
|
1999-09-10 18:52:56 +00:00
|
|
|
|
1999-03-27 01:22:45 +00:00
|
|
|
#ifdef NOISY_VERTICAL_MARGINS
|
|
|
|
nsFrame::ListTag(stdout, mOuterReflowState.frame);
|
2000-10-28 22:17:53 +00:00
|
|
|
printf(": reflowing ");
|
2002-09-04 06:55:40 +00:00
|
|
|
nsFrame::ListTag(stdout, mFrame);
|
2004-11-25 14:51:00 +00:00
|
|
|
printf(" margin => %d, clearance => %d\n", mTopMargin.get(), aClearance);
|
1999-03-27 01:22:45 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// Adjust the available height if its constrained so that the
|
|
|
|
// child frame doesn't think it can reflow into its margin area.
|
2002-09-04 06:55:40 +00:00
|
|
|
if (NS_UNCONSTRAINEDSIZE != aFrameRS.availableHeight) {
|
2004-11-25 14:51:00 +00:00
|
|
|
aFrameRS.availableHeight -= mTopMargin.get() + aClearance;
|
1999-03-27 01:22:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2007-08-20 20:07:50 +00:00
|
|
|
nscoord tx = 0, ty = 0;
|
|
|
|
// The values of x and y do not matter for floats, so don't bother calculating
|
2009-01-05 00:39:54 +00:00
|
|
|
// them. Floats are guaranteed to have their own float manager, so tx and ty
|
2007-08-20 20:07:50 +00:00
|
|
|
// don't matter. mX and mY don't matter becacuse they are only used in
|
|
|
|
// PlaceBlock, which is not used for floats.
|
|
|
|
if (aLine) {
|
|
|
|
// Compute x/y coordinate where reflow will begin. Use the rules
|
|
|
|
// from 10.3.3 to determine what to apply. At this point in the
|
|
|
|
// reflow auto left/right margins will have a zero value.
|
|
|
|
|
2010-08-11 19:32:53 +00:00
|
|
|
mX = tx = mSpace.x + aFrameRS.mComputedMargin.left;
|
|
|
|
mY = ty = mSpace.y + mTopMargin.get() + aClearance;
|
2007-08-20 20:07:50 +00:00
|
|
|
|
2009-01-05 00:39:54 +00:00
|
|
|
if ((mFrame->GetStateBits() & NS_BLOCK_FLOAT_MGR) == 0)
|
2010-08-11 19:32:53 +00:00
|
|
|
aFrameRS.mBlockDelta = mOuterReflowState.mBlockDelta + ty - aLine->mBounds.y;
|
2000-01-26 03:44:36 +00:00
|
|
|
}
|
|
|
|
|
1998-12-01 16:13:49 +00:00
|
|
|
// Let frame know that we are reflowing it
|
2002-09-04 06:55:40 +00:00
|
|
|
mFrame->WillReflow(mPresContext);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
1999-03-08 19:25:03 +00:00
|
|
|
#ifdef DEBUG
|
1999-03-19 23:06:20 +00:00
|
|
|
mMetrics.width = nscoord(0xdeadbeef);
|
|
|
|
mMetrics.height = nscoord(0xdeadbeef);
|
1999-03-08 19:25:03 +00:00
|
|
|
#endif
|
|
|
|
|
2009-01-05 00:39:54 +00:00
|
|
|
mOuterReflowState.mFloatManager->Translate(tx, ty);
|
2002-09-04 06:55:40 +00:00
|
|
|
rv = mFrame->Reflow(mPresContext, mMetrics, aFrameRS, aFrameReflowStatus);
|
2009-01-05 00:39:54 +00:00
|
|
|
mOuterReflowState.mFloatManager->Translate(-tx, -ty);
|
1998-12-01 16:13:49 +00:00
|
|
|
|
1999-03-08 19:25:03 +00:00
|
|
|
#ifdef DEBUG
|
1999-03-24 15:42:38 +00:00
|
|
|
if (!NS_INLINE_IS_BREAK_BEFORE(aFrameReflowStatus)) {
|
|
|
|
if (CRAZY_WIDTH(mMetrics.width) || CRAZY_HEIGHT(mMetrics.height)) {
|
2000-10-28 22:17:53 +00:00
|
|
|
printf("nsBlockReflowContext: ");
|
2002-09-04 06:55:40 +00:00
|
|
|
nsFrame::ListTag(stdout, mFrame);
|
2000-10-28 22:17:53 +00:00
|
|
|
printf(" metrics=%d,%d!\n", mMetrics.width, mMetrics.height);
|
1999-03-24 15:42:38 +00:00
|
|
|
}
|
|
|
|
if ((mMetrics.width == nscoord(0xdeadbeef)) ||
|
2007-01-23 04:06:56 +00:00
|
|
|
(mMetrics.height == nscoord(0xdeadbeef))) {
|
2000-10-28 22:17:53 +00:00
|
|
|
printf("nsBlockReflowContext: ");
|
2002-09-04 06:55:40 +00:00
|
|
|
nsFrame::ListTag(stdout, mFrame);
|
2007-01-23 04:06:56 +00:00
|
|
|
printf(" didn't set w/h %d,%d!\n", mMetrics.width, mMetrics.height);
|
1999-03-24 15:42:38 +00:00
|
|
|
}
|
1999-03-19 23:06:20 +00:00
|
|
|
}
|
1999-03-08 19:25:03 +00:00
|
|
|
#endif
|
1999-03-05 04:22:11 +00:00
|
|
|
|
2010-10-07 04:25:47 +00:00
|
|
|
if (!mFrame->HasOverflowAreas()) {
|
|
|
|
mMetrics.SetOverflowAreasToDesiredBounds();
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
|
|
|
|
2002-05-28 22:50:43 +00:00
|
|
|
if (!NS_INLINE_IS_BREAK_BEFORE(aFrameReflowStatus) ||
|
2003-06-27 18:13:48 +00:00
|
|
|
(mFrame->GetStateBits() & NS_FRAME_OUT_OF_FLOW)) {
|
1998-12-01 16:13:49 +00:00
|
|
|
// If frame is complete and has a next-in-flow, we need to delete
|
|
|
|
// them now. Do not do this when a break-before is signaled because
|
|
|
|
// the frame is going to get reflowed again (and may end up wanting
|
2002-05-28 22:50:43 +00:00
|
|
|
// a next-in-flow where it ends up), unless it is an out of flow frame.
|
2007-07-26 04:03:29 +00:00
|
|
|
if (NS_FRAME_IS_FULLY_COMPLETE(aFrameReflowStatus)) {
|
2004-09-14 02:28:03 +00:00
|
|
|
nsIFrame* kidNextInFlow = mFrame->GetNextInFlow();
|
2012-07-30 14:20:58 +00:00
|
|
|
if (nullptr != kidNextInFlow) {
|
1998-12-01 16:13:49 +00:00
|
|
|
// Remove all of the childs next-in-flows. Make sure that we ask
|
|
|
|
// the right parent to do the removal (it's possible that the
|
2005-03-23 03:35:08 +00:00
|
|
|
// parent is not this because we are executing pullup code).
|
|
|
|
// Floats will eventually be removed via nsBlockFrame::RemoveFloat
|
|
|
|
// which detaches the placeholder from the float.
|
1998-12-01 16:13:49 +00:00
|
|
|
/* XXX promote DeleteChildsNextInFlow to nsIFrame to elminate this cast */
|
2009-09-14 00:26:01 +00:00
|
|
|
aState.mOverflowTracker->Finish(mFrame);
|
2011-12-27 20:18:48 +00:00
|
|
|
static_cast<nsContainerFrame*>(kidNextInFlow->GetParent())
|
2011-10-17 14:59:28 +00:00
|
|
|
->DeleteNextInFlowChild(mPresContext, kidNextInFlow, true);
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-12-05 16:01:11 +00:00
|
|
|
return rv;
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Attempt to place the block frame within the available space. If
|
|
|
|
* it fits, apply horizontal positioning (CSS 10.3.3), collapse
|
|
|
|
* margins (CSS2 8.3.1). Also apply relative positioning.
|
|
|
|
*/
|
2011-09-29 06:19:26 +00:00
|
|
|
bool
|
2001-12-07 14:51:12 +00:00
|
|
|
nsBlockReflowContext::PlaceBlock(const nsHTMLReflowState& aReflowState,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForceFit,
|
2004-11-25 14:51:00 +00:00
|
|
|
nsLineBox* aLine,
|
2001-12-07 14:51:12 +00:00
|
|
|
nsCollapsingMargin& aBottomMarginResult,
|
|
|
|
nsRect& aInFlowBounds,
|
2010-10-07 04:25:45 +00:00
|
|
|
nsOverflowAreas& aOverflowAreas,
|
2005-03-23 03:35:08 +00:00
|
|
|
nsReflowStatus aReflowStatus)
|
1998-12-01 16:13:49 +00:00
|
|
|
{
|
2005-03-23 03:35:08 +00:00
|
|
|
// Compute collapsed bottom margin value.
|
|
|
|
if (NS_FRAME_IS_COMPLETE(aReflowStatus)) {
|
|
|
|
aBottomMarginResult = mMetrics.mCarriedOutBottomMargin;
|
2007-08-20 20:07:50 +00:00
|
|
|
aBottomMarginResult.Include(aReflowState.mComputedMargin.bottom);
|
2005-03-23 03:35:08 +00:00
|
|
|
} else {
|
|
|
|
// The used bottom-margin is set to zero above a break.
|
|
|
|
aBottomMarginResult.Zero();
|
|
|
|
}
|
1998-12-01 16:13:49 +00:00
|
|
|
|
1999-03-22 20:45:26 +00:00
|
|
|
nscoord x = mX;
|
|
|
|
nscoord y = mY;
|
2005-02-02 01:33:20 +00:00
|
|
|
nscoord backupContainingBlockAdvance = 0;
|
|
|
|
|
2004-11-25 14:51:00 +00:00
|
|
|
// Check whether the block's bottom margin collapses with its top
|
|
|
|
// margin. See CSS 2.1 section 8.3.1; those rules seem to match
|
|
|
|
// nsBlockFrame::IsEmpty(). Any such block must have zero height so
|
2005-01-27 20:54:27 +00:00
|
|
|
// check that first. Note that a block can have clearance and still
|
|
|
|
// have adjoining top/bottom margins, because the clearance goes
|
|
|
|
// above the top margin.
|
2006-03-26 21:02:19 +00:00
|
|
|
// Mark the frame as non-dirty; it has been reflowed (or we wouldn't
|
|
|
|
// be here), and we don't want to assert in CachedIsEmpty()
|
|
|
|
mFrame->RemoveStateBits(NS_FRAME_IS_DIRTY);
|
2011-09-29 06:19:26 +00:00
|
|
|
bool empty = 0 == mMetrics.height && aLine->CachedIsEmpty();
|
2005-03-23 03:35:08 +00:00
|
|
|
if (empty) {
|
2000-06-29 22:03:42 +00:00
|
|
|
// Collapse the bottom margin with the top margin that was already
|
|
|
|
// applied.
|
2001-10-25 01:08:40 +00:00
|
|
|
aBottomMarginResult.Include(mTopMargin);
|
2005-03-23 03:35:08 +00:00
|
|
|
|
1999-05-10 22:28:04 +00:00
|
|
|
#ifdef NOISY_VERTICAL_MARGINS
|
2000-10-28 22:17:53 +00:00
|
|
|
printf(" ");
|
2000-06-29 22:03:42 +00:00
|
|
|
nsFrame::ListTag(stdout, mOuterReflowState.frame);
|
2000-10-28 22:17:53 +00:00
|
|
|
printf(": ");
|
2000-06-29 22:03:42 +00:00
|
|
|
nsFrame::ListTag(stdout, mFrame);
|
2000-10-28 22:17:53 +00:00
|
|
|
printf(" -- collapsing top & bottom margin together; y=%d spaceY=%d\n",
|
2000-06-29 22:03:42 +00:00
|
|
|
y, mSpace.y);
|
1999-05-10 22:28:04 +00:00
|
|
|
#endif
|
2005-01-27 20:54:27 +00:00
|
|
|
// Section 8.3.1 of CSS 2.1 says that blocks with adjoining
|
|
|
|
// top/bottom margins whose top margin collapses with their
|
|
|
|
// parent's top margin should have their top border-edge at the
|
|
|
|
// top border-edge of their parent. We actually don't have to do
|
|
|
|
// anything special to make this happen. In that situation,
|
2011-10-17 14:59:28 +00:00
|
|
|
// nsBlockFrame::ShouldApplyTopMargin will have returned false,
|
2005-01-27 20:54:27 +00:00
|
|
|
// and mTopMargin and aClearance will have been zero in
|
|
|
|
// ReflowBlock.
|
2005-02-02 01:33:20 +00:00
|
|
|
|
|
|
|
// If we did apply our top margin, but now we're collapsing it
|
|
|
|
// into the bottom margin, we need to back up the containing
|
|
|
|
// block's y-advance by our top margin so that it doesn't get
|
|
|
|
// counted twice. Note that here we're allowing the line's bounds
|
|
|
|
// to become different from the block's position; we do this
|
|
|
|
// because the containing block will place the next line at the
|
|
|
|
// line's YMost, and it must place the next line at a different
|
|
|
|
// point from where this empty block will be.
|
|
|
|
backupContainingBlockAdvance = mTopMargin.get();
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
2000-08-11 20:08:15 +00:00
|
|
|
|
2005-03-23 03:35:08 +00:00
|
|
|
// See if the frame fit. If it's the first frame or empty then it
|
|
|
|
// always fits. If the height is unconstrained then it always fits,
|
|
|
|
// even if there's some sort of integer overflow that makes y +
|
|
|
|
// mMetrics.height appear to go beyond the available height.
|
|
|
|
if (!empty && !aForceFit && mSpace.height != NS_UNCONSTRAINEDSIZE) {
|
|
|
|
nscoord yMost = y - backupContainingBlockAdvance + mMetrics.height;
|
|
|
|
if (yMost > mSpace.YMost()) {
|
|
|
|
// didn't fit, we must acquit.
|
2001-12-07 14:51:12 +00:00
|
|
|
mFrame->DidReflow(mPresContext, &aReflowState, NS_FRAME_REFLOW_FINISHED);
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-03-23 03:35:08 +00:00
|
|
|
aInFlowBounds = nsRect(x, y - backupContainingBlockAdvance,
|
|
|
|
mMetrics.width, mMetrics.height);
|
|
|
|
|
|
|
|
// Apply CSS relative positioning
|
|
|
|
const nsStyleDisplay* styleDisp = mFrame->GetStyleDisplay();
|
|
|
|
if (NS_STYLE_POSITION_RELATIVE == styleDisp->mPosition) {
|
2008-04-18 07:40:35 +00:00
|
|
|
x += aReflowState.mComputedOffsets.left;
|
|
|
|
y += aReflowState.mComputedOffsets.top;
|
2005-01-25 22:29:59 +00:00
|
|
|
}
|
2005-03-23 03:35:08 +00:00
|
|
|
|
|
|
|
// Now place the frame and complete the reflow process
|
|
|
|
nsContainerFrame::FinishReflowChild(mFrame, mPresContext, &aReflowState, mMetrics, x, y, 0);
|
2010-10-07 04:25:45 +00:00
|
|
|
|
|
|
|
aOverflowAreas = mMetrics.mOverflowAreas + nsPoint(x, y);
|
2005-01-25 22:29:59 +00:00
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
return true;
|
1998-12-01 16:13:49 +00:00
|
|
|
}
|