mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
This is the first step of getting rid of RenderLayer. Instead of walking the RenderLayer tree, wall the RenderObject tree and add any layers encountered to a vector to paint later. This patch just consolidates and move the code from RenderLayer to RenderBox and then changes the children painting to iterate over the vector. Therefore we walk the RenderObject tree. We still call out to RenderLayer in a bunch of places. A followup patch will get rid of those. R=esprehn@chromium.org Review URL: https://codereview.chromium.org/899753003
1362 lines
63 KiB
C++
1362 lines
63 KiB
C++
/*
|
|
* Copyright (C) 2003, 2004, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public License
|
|
* along with this library; see the file COPYING.LIB. If not, write to
|
|
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
* Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
#include "sky/engine/config.h"
|
|
#include "sky/engine/core/rendering/InlineFlowBox.h"
|
|
|
|
#include "gen/sky/core/CSSPropertyNames.h"
|
|
#include "sky/engine/core/dom/Document.h"
|
|
#include "sky/engine/core/rendering/HitTestResult.h"
|
|
#include "sky/engine/core/rendering/InlineTextBox.h"
|
|
#include "sky/engine/core/rendering/RenderBlock.h"
|
|
#include "sky/engine/core/rendering/RenderInline.h"
|
|
#include "sky/engine/core/rendering/RenderLayer.h"
|
|
#include "sky/engine/core/rendering/RenderObjectInlines.h"
|
|
#include "sky/engine/core/rendering/RenderView.h"
|
|
#include "sky/engine/core/rendering/RootInlineBox.h"
|
|
#include "sky/engine/platform/fonts/Font.h"
|
|
#include "sky/engine/platform/graphics/GraphicsContextStateSaver.h"
|
|
|
|
#include <math.h>
|
|
|
|
namespace blink {
|
|
|
|
struct SameSizeAsInlineFlowBox : public InlineBox {
|
|
void* pointers[5];
|
|
uint32_t bitfields : 23;
|
|
};
|
|
|
|
COMPILE_ASSERT(sizeof(InlineFlowBox) == sizeof(SameSizeAsInlineFlowBox), InlineFlowBox_should_stay_small);
|
|
|
|
#if ENABLE(ASSERT)
|
|
|
|
InlineFlowBox::~InlineFlowBox()
|
|
{
|
|
if (!m_hasBadChildList)
|
|
for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
|
|
child->setHasBadParent();
|
|
}
|
|
|
|
#endif
|
|
|
|
LayoutUnit InlineFlowBox::getFlowSpacingLogicalWidth()
|
|
{
|
|
LayoutUnit totWidth = marginBorderPaddingLogicalLeft() + marginBorderPaddingLogicalRight();
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->isInlineFlowBox())
|
|
totWidth += toInlineFlowBox(curr)->getFlowSpacingLogicalWidth();
|
|
}
|
|
return totWidth;
|
|
}
|
|
|
|
IntRect InlineFlowBox::roundedFrameRect() const
|
|
{
|
|
// Begin by snapping the x and y coordinates to the nearest pixel.
|
|
int snappedX = lroundf(x());
|
|
int snappedY = lroundf(y());
|
|
|
|
int snappedMaxX = lroundf(x() + width());
|
|
int snappedMaxY = lroundf(y() + height());
|
|
|
|
return IntRect(snappedX, snappedY, snappedMaxX - snappedX, snappedMaxY - snappedY);
|
|
}
|
|
|
|
static void setHasTextDescendantsOnAncestors(InlineFlowBox* box)
|
|
{
|
|
while (box && !box->hasTextDescendants()) {
|
|
box->setHasTextDescendants();
|
|
box = box->parent();
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::addToLine(InlineBox* child)
|
|
{
|
|
ASSERT(!child->parent());
|
|
ASSERT(!child->nextOnLine());
|
|
ASSERT(!child->prevOnLine());
|
|
checkConsistency();
|
|
|
|
child->setParent(this);
|
|
if (!m_firstChild) {
|
|
m_firstChild = child;
|
|
m_lastChild = child;
|
|
} else {
|
|
m_lastChild->setNextOnLine(child);
|
|
child->setPrevOnLine(m_lastChild);
|
|
m_lastChild = child;
|
|
}
|
|
child->setFirstLineStyleBit(isFirstLineStyle());
|
|
if (child->isText()) {
|
|
if (child->renderer().parent() == renderer())
|
|
m_hasTextChildren = true;
|
|
setHasTextDescendantsOnAncestors(this);
|
|
} else if (child->isInlineFlowBox()) {
|
|
if (toInlineFlowBox(child)->hasTextDescendants())
|
|
setHasTextDescendantsOnAncestors(this);
|
|
}
|
|
|
|
if (descendantsHaveSameLineHeightAndBaseline() && !child->renderer().isOutOfFlowPositioned()) {
|
|
RenderStyle* parentStyle = renderer().style(isFirstLineStyle());
|
|
RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
|
|
bool shouldClearDescendantsHaveSameLineHeightAndBaseline = false;
|
|
if (child->renderer().isReplaced())
|
|
shouldClearDescendantsHaveSameLineHeightAndBaseline = true;
|
|
else if (child->isText()) {
|
|
if (child->renderer().parent() != renderer()) {
|
|
if (!parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
|
|
|| parentStyle->lineHeight() != childStyle->lineHeight()
|
|
|| (parentStyle->verticalAlign() != BASELINE && !isRootInlineBox()) || childStyle->verticalAlign() != BASELINE)
|
|
shouldClearDescendantsHaveSameLineHeightAndBaseline = true;
|
|
}
|
|
if (childStyle->textEmphasisMark() != TextEmphasisMarkNone)
|
|
shouldClearDescendantsHaveSameLineHeightAndBaseline = true;
|
|
} else {
|
|
ASSERT(isInlineFlowBox());
|
|
InlineFlowBox* childFlowBox = toInlineFlowBox(child);
|
|
// Check the child's bit, and then also check for differences in font, line-height, vertical-align
|
|
if (!childFlowBox->descendantsHaveSameLineHeightAndBaseline()
|
|
|| !parentStyle->font().fontMetrics().hasIdenticalAscentDescentAndLineGap(childStyle->font().fontMetrics())
|
|
|| parentStyle->lineHeight() != childStyle->lineHeight()
|
|
|| (parentStyle->verticalAlign() != BASELINE && !isRootInlineBox()) || childStyle->verticalAlign() != BASELINE
|
|
|| childStyle->hasBorder() || childStyle->hasPadding())
|
|
shouldClearDescendantsHaveSameLineHeightAndBaseline = true;
|
|
}
|
|
|
|
if (shouldClearDescendantsHaveSameLineHeightAndBaseline)
|
|
clearDescendantsHaveSameLineHeightAndBaseline();
|
|
}
|
|
|
|
if (!child->renderer().isOutOfFlowPositioned()) {
|
|
if (child->isText()) {
|
|
RenderStyle* childStyle = child->renderer().style(isFirstLineStyle());
|
|
if (childStyle->letterSpacing() < 0 || childStyle->textShadow() || childStyle->textEmphasisMark() != TextEmphasisMarkNone || childStyle->textStrokeWidth())
|
|
child->clearKnownToHaveNoOverflow();
|
|
} else if (child->renderer().isReplaced()) {
|
|
RenderBox& box = toRenderBox(child->renderer());
|
|
if (box.hasRenderOverflow() || box.hasSelfPaintingLayer())
|
|
child->clearKnownToHaveNoOverflow();
|
|
} else if (child->renderer().style(isFirstLineStyle())->boxShadow() || child->boxModelObject()->hasSelfPaintingLayer()
|
|
|| child->renderer().style(isFirstLineStyle())->hasBorderImageOutsets()
|
|
|| child->renderer().style(isFirstLineStyle())->hasOutline()) {
|
|
child->clearKnownToHaveNoOverflow();
|
|
}
|
|
|
|
if (knownToHaveNoOverflow() && child->isInlineFlowBox() && !toInlineFlowBox(child)->knownToHaveNoOverflow())
|
|
clearKnownToHaveNoOverflow();
|
|
}
|
|
|
|
checkConsistency();
|
|
}
|
|
|
|
void InlineFlowBox::removeChild(InlineBox* child, MarkLineBoxes markDirty)
|
|
{
|
|
checkConsistency();
|
|
|
|
if (markDirty == MarkLineBoxesDirty && !isDirty())
|
|
dirtyLineBoxes();
|
|
|
|
root().childRemoved(child);
|
|
|
|
if (child == m_firstChild)
|
|
m_firstChild = child->nextOnLine();
|
|
if (child == m_lastChild)
|
|
m_lastChild = child->prevOnLine();
|
|
if (child->nextOnLine())
|
|
child->nextOnLine()->setPrevOnLine(child->prevOnLine());
|
|
if (child->prevOnLine())
|
|
child->prevOnLine()->setNextOnLine(child->nextOnLine());
|
|
|
|
child->setParent(0);
|
|
|
|
checkConsistency();
|
|
}
|
|
|
|
void InlineFlowBox::deleteLine()
|
|
{
|
|
InlineBox* child = firstChild();
|
|
InlineBox* next = 0;
|
|
while (child) {
|
|
ASSERT(this == child->parent());
|
|
next = child->nextOnLine();
|
|
#if ENABLE(ASSERT)
|
|
child->setParent(0);
|
|
#endif
|
|
child->deleteLine();
|
|
child = next;
|
|
}
|
|
#if ENABLE(ASSERT)
|
|
m_firstChild = 0;
|
|
m_lastChild = 0;
|
|
#endif
|
|
|
|
removeLineBoxFromRenderObject();
|
|
destroy();
|
|
}
|
|
|
|
void InlineFlowBox::removeLineBoxFromRenderObject()
|
|
{
|
|
rendererLineBoxes()->removeLineBox(this);
|
|
}
|
|
|
|
void InlineFlowBox::extractLine()
|
|
{
|
|
if (!extracted())
|
|
extractLineBoxFromRenderObject();
|
|
for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
|
|
child->extractLine();
|
|
}
|
|
|
|
void InlineFlowBox::extractLineBoxFromRenderObject()
|
|
{
|
|
rendererLineBoxes()->extractLineBox(this);
|
|
}
|
|
|
|
void InlineFlowBox::attachLine()
|
|
{
|
|
if (extracted())
|
|
attachLineBoxToRenderObject();
|
|
for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
|
|
child->attachLine();
|
|
}
|
|
|
|
void InlineFlowBox::attachLineBoxToRenderObject()
|
|
{
|
|
rendererLineBoxes()->attachLineBox(this);
|
|
}
|
|
|
|
void InlineFlowBox::adjustPosition(float dx, float dy)
|
|
{
|
|
InlineBox::adjustPosition(dx, dy);
|
|
for (InlineBox* child = firstChild(); child; child = child->nextOnLine())
|
|
child->adjustPosition(dx, dy);
|
|
if (m_overflow)
|
|
m_overflow->move(dx, dy); // FIXME: Rounding error here since overflow was pixel snapped, but nobody other than list markers passes non-integral values here.
|
|
}
|
|
|
|
RenderLineBoxList* InlineFlowBox::rendererLineBoxes() const
|
|
{
|
|
return toRenderInline(renderer()).lineBoxes();
|
|
}
|
|
|
|
static inline bool isLastChildForRenderer(RenderObject* ancestor, RenderObject* child)
|
|
{
|
|
if (!child)
|
|
return false;
|
|
|
|
if (child == ancestor)
|
|
return true;
|
|
|
|
RenderObject* curr = child;
|
|
RenderObject* parent = curr->parent();
|
|
while (parent && (!parent->isRenderBlock() || parent->isInline())) {
|
|
if (parent->slowLastChild() != curr)
|
|
return false;
|
|
if (parent == ancestor)
|
|
return true;
|
|
|
|
curr = parent;
|
|
parent = curr->parent();
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
static bool isAnsectorAndWithinBlock(RenderObject* ancestor, RenderObject* child)
|
|
{
|
|
RenderObject* object = child;
|
|
while (object && (!object->isRenderBlock() || object->isInline())) {
|
|
if (object == ancestor)
|
|
return true;
|
|
object = object->parent();
|
|
}
|
|
return false;
|
|
}
|
|
|
|
void InlineFlowBox::determineSpacingForFlowBoxes(bool lastLine, bool isLogicallyLastRunWrapped, RenderObject* logicallyLastRunRenderer)
|
|
{
|
|
// All boxes start off open. They will not apply any margins/border/padding on
|
|
// any side.
|
|
bool includeLeftEdge = false;
|
|
bool includeRightEdge = false;
|
|
|
|
// The root inline box never has borders/margins/padding.
|
|
if (parent()) {
|
|
bool ltr = renderer().style()->isLeftToRightDirection();
|
|
|
|
// Check to see if all initial lines are unconstructed. If so, then
|
|
// we know the inline began on this line.
|
|
RenderLineBoxList* lineBoxList = rendererLineBoxes();
|
|
if (!lineBoxList->firstLineBox()->isConstructed()) {
|
|
if (renderer().style()->boxDecorationBreak() == DCLONE)
|
|
includeLeftEdge = includeRightEdge = true;
|
|
else if (ltr && lineBoxList->firstLineBox() == this)
|
|
includeLeftEdge = true;
|
|
else if (!ltr && lineBoxList->lastLineBox() == this)
|
|
includeRightEdge = true;
|
|
}
|
|
|
|
if (!lineBoxList->lastLineBox()->isConstructed()) {
|
|
bool isLastObjectOnLine = !isAnsectorAndWithinBlock(&renderer(), logicallyLastRunRenderer) || (isLastChildForRenderer(&renderer(), logicallyLastRunRenderer) && !isLogicallyLastRunWrapped);
|
|
|
|
// We include the border under these conditions:
|
|
// (1) The next line was not created, or it is constructed. We check the previous line for rtl.
|
|
// (2) The logicallyLastRun is not a descendant of this renderer.
|
|
// (3) The logicallyLastRun is a descendant of this renderer, but it is the last child of this renderer and it does not wrap to the next line.
|
|
// (4) The decoration break is set to clone therefore there will be borders on every sides.
|
|
if (renderer().style()->boxDecorationBreak() == DCLONE)
|
|
includeLeftEdge = includeRightEdge = true;
|
|
else if (ltr) {
|
|
if (!nextLineBox()
|
|
&& (lastLine || isLastObjectOnLine))
|
|
includeRightEdge = true;
|
|
} else {
|
|
if ((!prevLineBox() || prevLineBox()->isConstructed())
|
|
&& (lastLine || isLastObjectOnLine))
|
|
includeLeftEdge = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
setEdges(includeLeftEdge, includeRightEdge);
|
|
|
|
// Recur into our children.
|
|
for (InlineBox* currChild = firstChild(); currChild; currChild = currChild->nextOnLine()) {
|
|
if (currChild->isInlineFlowBox()) {
|
|
InlineFlowBox* currFlow = toInlineFlowBox(currChild);
|
|
currFlow->determineSpacingForFlowBoxes(lastLine, isLogicallyLastRunWrapped, logicallyLastRunRenderer);
|
|
}
|
|
}
|
|
}
|
|
|
|
float InlineFlowBox::placeBoxesInInlineDirection(float logicalLeft, bool& needsWordSpacing)
|
|
{
|
|
// Set our x position.
|
|
beginPlacingBoxRangesInInlineDirection(logicalLeft);
|
|
|
|
float startLogicalLeft = logicalLeft;
|
|
logicalLeft += borderLogicalLeft() + paddingLogicalLeft();
|
|
|
|
float minLogicalLeft = startLogicalLeft;
|
|
float maxLogicalRight = logicalLeft;
|
|
|
|
placeBoxRangeInInlineDirection(firstChild(), 0, logicalLeft, minLogicalLeft, maxLogicalRight, needsWordSpacing);
|
|
|
|
logicalLeft += borderLogicalRight() + paddingLogicalRight();
|
|
endPlacingBoxRangesInInlineDirection(startLogicalLeft, logicalLeft, minLogicalLeft, maxLogicalRight);
|
|
return logicalLeft;
|
|
}
|
|
|
|
float InlineFlowBox::placeBoxRangeInInlineDirection(InlineBox* firstChild, InlineBox* lastChild,
|
|
float& logicalLeft, float& minLogicalLeft, float& maxLogicalRight, bool& needsWordSpacing)
|
|
{
|
|
for (InlineBox* curr = firstChild; curr && curr != lastChild; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isText()) {
|
|
InlineTextBox* text = toInlineTextBox(curr);
|
|
RenderText& rt = text->renderer();
|
|
if (rt.textLength()) {
|
|
if (needsWordSpacing && isSpaceOrNewline(rt.characterAt(text->start())))
|
|
logicalLeft += rt.style(isFirstLineStyle())->font().fontDescription().wordSpacing();
|
|
needsWordSpacing = !isSpaceOrNewline(rt.characterAt(text->end()));
|
|
}
|
|
text->setLogicalLeft(logicalLeft);
|
|
if (knownToHaveNoOverflow())
|
|
minLogicalLeft = std::min(logicalLeft, minLogicalLeft);
|
|
logicalLeft += text->logicalWidth();
|
|
if (knownToHaveNoOverflow())
|
|
maxLogicalRight = std::max(logicalLeft, maxLogicalRight);
|
|
} else {
|
|
if (curr->renderer().isOutOfFlowPositioned()) {
|
|
if (curr->renderer().parent()->style()->isLeftToRightDirection()) {
|
|
curr->setLogicalLeft(logicalLeft);
|
|
} else {
|
|
// Our offset that we cache needs to be from the edge of the right border box and
|
|
// not the left border box. We have to subtract |x| from the width of the block
|
|
// (which can be obtained from the root line box).
|
|
curr->setLogicalLeft(root().block().logicalWidth() - logicalLeft);
|
|
}
|
|
continue; // The positioned object has no effect on the width.
|
|
}
|
|
if (curr->renderer().isRenderInline()) {
|
|
InlineFlowBox* flow = toInlineFlowBox(curr);
|
|
logicalLeft += flow->marginLogicalLeft();
|
|
if (knownToHaveNoOverflow())
|
|
minLogicalLeft = std::min(logicalLeft, minLogicalLeft);
|
|
logicalLeft = flow->placeBoxesInInlineDirection(logicalLeft, needsWordSpacing);
|
|
if (knownToHaveNoOverflow())
|
|
maxLogicalRight = std::max(logicalLeft, maxLogicalRight);
|
|
logicalLeft += flow->marginLogicalRight();
|
|
} else {
|
|
// The box can have a different writing-mode than the overall line, so this is a bit complicated.
|
|
// Just get all the physical margin and overflow values by hand based off |isVertical|.
|
|
LayoutUnit logicalLeftMargin = curr->boxModelObject()->marginLeft();
|
|
LayoutUnit logicalRightMargin = curr->boxModelObject()->marginRight();
|
|
|
|
logicalLeft += logicalLeftMargin;
|
|
curr->setLogicalLeft(logicalLeft);
|
|
if (knownToHaveNoOverflow())
|
|
minLogicalLeft = std::min(logicalLeft, minLogicalLeft);
|
|
logicalLeft += curr->logicalWidth();
|
|
if (knownToHaveNoOverflow())
|
|
maxLogicalRight = std::max(logicalLeft, maxLogicalRight);
|
|
logicalLeft += logicalRightMargin;
|
|
// If we encounter any space after this inline block then ensure it is treated as the space between two words.
|
|
needsWordSpacing = true;
|
|
}
|
|
}
|
|
}
|
|
return logicalLeft;
|
|
}
|
|
|
|
void InlineFlowBox::adjustMaxAscentAndDescent(int& maxAscent, int& maxDescent, int maxPositionTop, int maxPositionBottom)
|
|
{
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
// The computed lineheight needs to be extended for the
|
|
// positioned elements
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
if (curr->verticalAlign() == TOP || curr->verticalAlign() == BOTTOM) {
|
|
int lineHeight = curr->lineHeight();
|
|
if (curr->verticalAlign() == TOP) {
|
|
if (maxAscent + maxDescent < lineHeight)
|
|
maxDescent = lineHeight - maxAscent;
|
|
}
|
|
else {
|
|
if (maxAscent + maxDescent < lineHeight)
|
|
maxAscent = lineHeight - maxDescent;
|
|
}
|
|
|
|
if (maxAscent + maxDescent >= std::max(maxPositionTop, maxPositionBottom))
|
|
break;
|
|
}
|
|
|
|
if (curr->isInlineFlowBox())
|
|
toInlineFlowBox(curr)->adjustMaxAscentAndDescent(maxAscent, maxDescent, maxPositionTop, maxPositionBottom);
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::computeLogicalBoxHeights(RootInlineBox* rootBox, LayoutUnit& maxPositionTop, LayoutUnit& maxPositionBottom,
|
|
int& maxAscent, int& maxDescent, bool& setMaxAscent, bool& setMaxDescent,
|
|
bool strictMode, GlyphOverflowAndFallbackFontsMap& textBoxDataMap,
|
|
FontBaseline baselineType, VerticalPositionCache& verticalPositionCache)
|
|
{
|
|
// The primary purpose of this function is to compute the maximal ascent and descent values for
|
|
// a line. These values are computed based off the block's line-box-contain property, which indicates
|
|
// what parts of descendant boxes have to fit within the line.
|
|
//
|
|
// The maxAscent value represents the distance of the highest point of any box (typically including line-height) from
|
|
// the root box's baseline. The maxDescent value represents the distance of the lowest point of any box
|
|
// (also typically including line-height) from the root box baseline. These values can be negative.
|
|
//
|
|
// A secondary purpose of this function is to store the offset of every box's baseline from the root box's
|
|
// baseline. This information is cached in the logicalTop() of every box. We're effectively just using
|
|
// the logicalTop() as scratch space.
|
|
//
|
|
// Because a box can be positioned such that it ends up fully above or fully below the
|
|
// root line box, we only consider it to affect the maxAscent and maxDescent values if some
|
|
// part of the box (EXCLUDING leading) is above (for ascent) or below (for descent) the root box's baseline.
|
|
bool affectsAscent = false;
|
|
bool affectsDescent = false;
|
|
bool checkChildren = !descendantsHaveSameLineHeightAndBaseline();
|
|
|
|
if (isRootInlineBox()) {
|
|
// Examine our root box.
|
|
int ascent = 0;
|
|
int descent = 0;
|
|
rootBox->ascentAndDescentForBox(rootBox, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
|
|
if (strictMode || hasTextChildren() || (!checkChildren && hasTextDescendants())) {
|
|
if (maxAscent < ascent || !setMaxAscent) {
|
|
maxAscent = ascent;
|
|
setMaxAscent = true;
|
|
}
|
|
if (maxDescent < descent || !setMaxDescent) {
|
|
maxDescent = descent;
|
|
setMaxDescent = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!checkChildren)
|
|
return;
|
|
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
InlineFlowBox* inlineFlowBox = curr->isInlineFlowBox() ? toInlineFlowBox(curr) : 0;
|
|
|
|
bool affectsAscent = false;
|
|
bool affectsDescent = false;
|
|
|
|
// The verticalPositionForBox function returns the distance between the child box's baseline
|
|
// and the root box's baseline. The value is negative if the child box's baseline is above the
|
|
// root box's baseline, and it is positive if the child box's baseline is below the root box's baseline.
|
|
curr->setLogicalTop(rootBox->verticalPositionForBox(curr, verticalPositionCache).toFloat());
|
|
|
|
int ascent = 0;
|
|
int descent = 0;
|
|
rootBox->ascentAndDescentForBox(curr, textBoxDataMap, ascent, descent, affectsAscent, affectsDescent);
|
|
|
|
LayoutUnit boxHeight = ascent + descent;
|
|
if (curr->verticalAlign() == TOP) {
|
|
if (maxPositionTop < boxHeight)
|
|
maxPositionTop = boxHeight;
|
|
} else if (curr->verticalAlign() == BOTTOM) {
|
|
if (maxPositionBottom < boxHeight)
|
|
maxPositionBottom = boxHeight;
|
|
} else if (!inlineFlowBox || strictMode || inlineFlowBox->hasTextChildren() || (inlineFlowBox->descendantsHaveSameLineHeightAndBaseline() && inlineFlowBox->hasTextDescendants())
|
|
|| inlineFlowBox->boxModelObject()->hasInlineDirectionBordersOrPadding()) {
|
|
// Note that these values can be negative. Even though we only affect the maxAscent and maxDescent values
|
|
// if our box (excluding line-height) was above (for ascent) or below (for descent) the root baseline, once you factor in line-height
|
|
// the final box can end up being fully above or fully below the root box's baseline! This is ok, but what it
|
|
// means is that ascent and descent (including leading), can end up being negative. The setMaxAscent and
|
|
// setMaxDescent booleans are used to ensure that we're willing to initially set maxAscent/Descent to negative
|
|
// values.
|
|
ascent -= curr->logicalTop();
|
|
descent += curr->logicalTop();
|
|
if (affectsAscent && (maxAscent < ascent || !setMaxAscent)) {
|
|
maxAscent = ascent;
|
|
setMaxAscent = true;
|
|
}
|
|
|
|
if (affectsDescent && (maxDescent < descent || !setMaxDescent)) {
|
|
maxDescent = descent;
|
|
setMaxDescent = true;
|
|
}
|
|
}
|
|
|
|
if (inlineFlowBox)
|
|
inlineFlowBox->computeLogicalBoxHeights(rootBox, maxPositionTop, maxPositionBottom, maxAscent, maxDescent,
|
|
setMaxAscent, setMaxDescent, strictMode, textBoxDataMap,
|
|
baselineType, verticalPositionCache);
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::placeBoxesInBlockDirection(LayoutUnit top, LayoutUnit maxHeight, int maxAscent, bool strictMode, LayoutUnit& lineTop, LayoutUnit& lineBottom, LayoutUnit& selectionBottom, bool& setLineTop,
|
|
LayoutUnit& lineTopIncludingMargins, LayoutUnit& lineBottomIncludingMargins, bool& hasAnnotationsBefore, bool& hasAnnotationsAfter, FontBaseline baselineType)
|
|
{
|
|
bool isRootBox = isRootInlineBox();
|
|
if (isRootBox) {
|
|
const FontMetrics& fontMetrics = renderer().style(isFirstLineStyle())->fontMetrics();
|
|
// RootInlineBoxes are always placed on at pixel boundaries in their logical y direction. Not doing
|
|
// so results in incorrect rendering of text decorations, most notably underlines.
|
|
setLogicalTop(roundToInt(top + maxAscent - fontMetrics.ascent(baselineType)));
|
|
}
|
|
|
|
LayoutUnit adjustmentForChildrenWithSameLineHeightAndBaseline = 0;
|
|
if (descendantsHaveSameLineHeightAndBaseline()) {
|
|
adjustmentForChildrenWithSameLineHeightAndBaseline = logicalTop();
|
|
if (parent())
|
|
adjustmentForChildrenWithSameLineHeightAndBaseline += (boxModelObject()->borderBefore() + boxModelObject()->paddingBefore());
|
|
}
|
|
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
if (descendantsHaveSameLineHeightAndBaseline()) {
|
|
curr->adjustBlockDirectionPosition(adjustmentForChildrenWithSameLineHeightAndBaseline.toFloat());
|
|
continue;
|
|
}
|
|
|
|
InlineFlowBox* inlineFlowBox = curr->isInlineFlowBox() ? toInlineFlowBox(curr) : 0;
|
|
bool childAffectsTopBottomPos = true;
|
|
if (curr->verticalAlign() == TOP)
|
|
curr->setLogicalTop(top.toFloat());
|
|
else if (curr->verticalAlign() == BOTTOM)
|
|
curr->setLogicalTop((top + maxHeight - curr->lineHeight()).toFloat());
|
|
else {
|
|
if (!strictMode && inlineFlowBox && !inlineFlowBox->hasTextChildren() && !curr->boxModelObject()->hasInlineDirectionBordersOrPadding()
|
|
&& !(inlineFlowBox->descendantsHaveSameLineHeightAndBaseline() && inlineFlowBox->hasTextDescendants()))
|
|
childAffectsTopBottomPos = false;
|
|
LayoutUnit posAdjust = maxAscent - curr->baselinePosition(baselineType);
|
|
curr->setLogicalTop(curr->logicalTop() + top + posAdjust);
|
|
}
|
|
|
|
LayoutUnit newLogicalTop = curr->logicalTop();
|
|
LayoutUnit newLogicalTopIncludingMargins = newLogicalTop;
|
|
LayoutUnit boxHeight = curr->logicalHeight();
|
|
LayoutUnit boxHeightIncludingMargins = boxHeight;
|
|
LayoutUnit borderPaddingHeight = 0;
|
|
if (curr->isText() || curr->isInlineFlowBox()) {
|
|
const FontMetrics& fontMetrics = curr->renderer().style(isFirstLineStyle())->fontMetrics();
|
|
newLogicalTop += curr->baselinePosition(baselineType) - fontMetrics.ascent(baselineType);
|
|
if (curr->isInlineFlowBox()) {
|
|
RenderBoxModelObject& boxObject = toRenderBoxModelObject(curr->renderer());
|
|
newLogicalTop -= boxObject.borderTop() + boxObject.paddingTop();
|
|
borderPaddingHeight = boxObject.borderAndPaddingLogicalHeight();
|
|
}
|
|
newLogicalTopIncludingMargins = newLogicalTop;
|
|
} else {
|
|
RenderBox& box = toRenderBox(curr->renderer());
|
|
newLogicalTopIncludingMargins = newLogicalTop;
|
|
LayoutUnit overSideMargin = box.marginTop();
|
|
LayoutUnit underSideMargin = box.marginBottom();
|
|
newLogicalTop += overSideMargin;
|
|
boxHeightIncludingMargins += overSideMargin + underSideMargin;
|
|
}
|
|
|
|
curr->setLogicalTop(newLogicalTop.toFloat());
|
|
|
|
if (childAffectsTopBottomPos) {
|
|
if (curr->isInlineTextBox()) {
|
|
TextEmphasisPosition emphasisMarkPosition;
|
|
if (toInlineTextBox(curr)->getEmphasisMarkPosition(curr->renderer().style(isFirstLineStyle()), emphasisMarkPosition)) {
|
|
bool emphasisMarkIsOver = emphasisMarkPosition == TextEmphasisPositionOver;
|
|
if (emphasisMarkIsOver)
|
|
hasAnnotationsBefore = true;
|
|
else
|
|
hasAnnotationsAfter = true;
|
|
}
|
|
}
|
|
|
|
if (!setLineTop) {
|
|
setLineTop = true;
|
|
lineTop = newLogicalTop;
|
|
lineTopIncludingMargins = std::min(lineTop, newLogicalTopIncludingMargins);
|
|
} else {
|
|
lineTop = std::min(lineTop, newLogicalTop);
|
|
lineTopIncludingMargins = std::min(lineTop, std::min(lineTopIncludingMargins, newLogicalTopIncludingMargins));
|
|
}
|
|
selectionBottom = std::max(selectionBottom, newLogicalTop + boxHeight - borderPaddingHeight);
|
|
lineBottom = std::max(lineBottom, newLogicalTop + boxHeight);
|
|
lineBottomIncludingMargins = std::max(lineBottom, std::max(lineBottomIncludingMargins, newLogicalTopIncludingMargins + boxHeightIncludingMargins));
|
|
}
|
|
|
|
// Adjust boxes to use their real box y/height and not the logical height (as dictated by
|
|
// line-height).
|
|
if (inlineFlowBox)
|
|
inlineFlowBox->placeBoxesInBlockDirection(top, maxHeight, maxAscent, strictMode, lineTop, lineBottom, selectionBottom, setLineTop,
|
|
lineTopIncludingMargins, lineBottomIncludingMargins, hasAnnotationsBefore, hasAnnotationsAfter, baselineType);
|
|
}
|
|
|
|
if (isRootBox) {
|
|
if (strictMode || hasTextChildren() || (descendantsHaveSameLineHeightAndBaseline() && hasTextDescendants())) {
|
|
if (!setLineTop) {
|
|
setLineTop = true;
|
|
lineTop = pixelSnappedLogicalTop();
|
|
lineTopIncludingMargins = lineTop;
|
|
} else {
|
|
lineTop = std::min<LayoutUnit>(lineTop, pixelSnappedLogicalTop());
|
|
lineTopIncludingMargins = std::min(lineTop, lineTopIncludingMargins);
|
|
}
|
|
selectionBottom = std::max<LayoutUnit>(selectionBottom, pixelSnappedLogicalBottom());
|
|
lineBottom = std::max<LayoutUnit>(lineBottom, pixelSnappedLogicalBottom());
|
|
lineBottomIncludingMargins = std::max(lineBottom, lineBottomIncludingMargins);
|
|
}
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::computeMaxLogicalTop(float& maxLogicalTop) const
|
|
{
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
if (descendantsHaveSameLineHeightAndBaseline())
|
|
continue;
|
|
|
|
maxLogicalTop = std::max<float>(maxLogicalTop, curr->y());
|
|
float localMaxLogicalTop = 0;
|
|
if (curr->isInlineFlowBox())
|
|
toInlineFlowBox(curr)->computeMaxLogicalTop(localMaxLogicalTop);
|
|
maxLogicalTop = std::max<float>(maxLogicalTop, localMaxLogicalTop);
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::flipLinesInBlockDirection(LayoutUnit lineTop, LayoutUnit lineBottom)
|
|
{
|
|
// Flip the box on the line such that the top is now relative to the lineBottom instead of the lineTop.
|
|
setLogicalTop(lineBottom - (logicalTop() - lineTop) - logicalHeight());
|
|
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders aren't affected here.
|
|
|
|
if (curr->isInlineFlowBox())
|
|
toInlineFlowBox(curr)->flipLinesInBlockDirection(lineTop, lineBottom);
|
|
else
|
|
curr->setLogicalTop(lineBottom - (curr->logicalTop() - lineTop) - curr->logicalHeight());
|
|
}
|
|
}
|
|
|
|
inline void InlineFlowBox::addBoxShadowVisualOverflow(LayoutRect& logicalVisualOverflow)
|
|
{
|
|
// box-shadow on root line boxes is applying to the block and not to the lines.
|
|
if (!parent())
|
|
return;
|
|
|
|
RenderStyle* style = renderer().style(isFirstLineStyle());
|
|
if (!style->boxShadow())
|
|
return;
|
|
|
|
LayoutUnit boxShadowLogicalTop;
|
|
LayoutUnit boxShadowLogicalBottom;
|
|
style->getBoxShadowBlockDirectionExtent(boxShadowLogicalTop, boxShadowLogicalBottom);
|
|
|
|
// Similar to how glyph overflow works, if our lines are flipped, then it's actually the opposite shadow that applies, since
|
|
// the line is "upside down" in terms of block coordinates.
|
|
LayoutUnit shadowLogicalTop = boxShadowLogicalTop;
|
|
LayoutUnit shadowLogicalBottom = boxShadowLogicalBottom;
|
|
|
|
LayoutUnit logicalTopVisualOverflow = std::min(pixelSnappedLogicalTop() + shadowLogicalTop, logicalVisualOverflow.y());
|
|
LayoutUnit logicalBottomVisualOverflow = std::max(pixelSnappedLogicalBottom() + shadowLogicalBottom, logicalVisualOverflow.maxY());
|
|
|
|
LayoutUnit boxShadowLogicalLeft;
|
|
LayoutUnit boxShadowLogicalRight;
|
|
style->getBoxShadowInlineDirectionExtent(boxShadowLogicalLeft, boxShadowLogicalRight);
|
|
|
|
LayoutUnit logicalLeftVisualOverflow = std::min(pixelSnappedLogicalLeft() + boxShadowLogicalLeft, logicalVisualOverflow.x());
|
|
LayoutUnit logicalRightVisualOverflow = std::max(pixelSnappedLogicalRight() + boxShadowLogicalRight, logicalVisualOverflow.maxX());
|
|
|
|
logicalVisualOverflow = LayoutRect(logicalLeftVisualOverflow, logicalTopVisualOverflow,
|
|
logicalRightVisualOverflow - logicalLeftVisualOverflow, logicalBottomVisualOverflow - logicalTopVisualOverflow);
|
|
}
|
|
|
|
inline void InlineFlowBox::addBorderOutsetVisualOverflow(LayoutRect& logicalVisualOverflow)
|
|
{
|
|
// border-image-outset on root line boxes is applying to the block and not to the lines.
|
|
if (!parent())
|
|
return;
|
|
|
|
RenderStyle* style = renderer().style(isFirstLineStyle());
|
|
if (!style->hasBorderImageOutsets())
|
|
return;
|
|
|
|
LayoutBoxExtent borderOutsets = style->borderImageOutsets();
|
|
|
|
LayoutUnit borderOutsetLogicalTop = borderOutsets.logicalTop();
|
|
LayoutUnit borderOutsetLogicalBottom = borderOutsets.logicalBottom();
|
|
LayoutUnit borderOutsetLogicalLeft = borderOutsets.logicalLeft();
|
|
LayoutUnit borderOutsetLogicalRight = borderOutsets.logicalRight();
|
|
|
|
// Similar to how glyph overflow works, if our lines are flipped, then it's actually the opposite border that applies, since
|
|
// the line is "upside down" in terms of block coordinates. vertical-rl and horizontal-bt are the flipped line modes.
|
|
LayoutUnit outsetLogicalTop = borderOutsetLogicalTop;
|
|
LayoutUnit outsetLogicalBottom = borderOutsetLogicalBottom;
|
|
|
|
LayoutUnit logicalTopVisualOverflow = std::min(pixelSnappedLogicalTop() - outsetLogicalTop, logicalVisualOverflow.y());
|
|
LayoutUnit logicalBottomVisualOverflow = std::max(pixelSnappedLogicalBottom() + outsetLogicalBottom, logicalVisualOverflow.maxY());
|
|
|
|
LayoutUnit outsetLogicalLeft = includeLogicalLeftEdge() ? borderOutsetLogicalLeft : LayoutUnit();
|
|
LayoutUnit outsetLogicalRight = includeLogicalRightEdge() ? borderOutsetLogicalRight : LayoutUnit();
|
|
|
|
LayoutUnit logicalLeftVisualOverflow = std::min(pixelSnappedLogicalLeft() - outsetLogicalLeft, logicalVisualOverflow.x());
|
|
LayoutUnit logicalRightVisualOverflow = std::max(pixelSnappedLogicalRight() + outsetLogicalRight, logicalVisualOverflow.maxX());
|
|
|
|
logicalVisualOverflow = LayoutRect(logicalLeftVisualOverflow, logicalTopVisualOverflow,
|
|
logicalRightVisualOverflow - logicalLeftVisualOverflow, logicalBottomVisualOverflow - logicalTopVisualOverflow);
|
|
}
|
|
|
|
inline void InlineFlowBox::addOutlineVisualOverflow(LayoutRect& logicalVisualOverflow)
|
|
{
|
|
// Outline on root line boxes is applied to the block and not to the lines.
|
|
if (!parent())
|
|
return;
|
|
|
|
RenderStyle* style = renderer().style(isFirstLineStyle());
|
|
if (!style->hasOutline())
|
|
return;
|
|
|
|
logicalVisualOverflow.inflate(style->outlineSize());
|
|
}
|
|
|
|
inline void InlineFlowBox::addTextBoxVisualOverflow(InlineTextBox* textBox, GlyphOverflowAndFallbackFontsMap& textBoxDataMap, LayoutRect& logicalVisualOverflow)
|
|
{
|
|
if (textBox->knownToHaveNoOverflow())
|
|
return;
|
|
|
|
RenderStyle* style = textBox->renderer().style(isFirstLineStyle());
|
|
|
|
GlyphOverflowAndFallbackFontsMap::iterator it = textBoxDataMap.find(textBox);
|
|
GlyphOverflow* glyphOverflow = it == textBoxDataMap.end() ? 0 : &it->value.second;
|
|
|
|
int topGlyphEdge = glyphOverflow ? glyphOverflow->top : 0;
|
|
int bottomGlyphEdge = glyphOverflow ? glyphOverflow->bottom : 0;
|
|
int leftGlyphEdge = glyphOverflow ? glyphOverflow->left : 0;
|
|
int rightGlyphEdge = glyphOverflow ? glyphOverflow->right : 0;
|
|
|
|
int strokeOverflow = static_cast<int>(ceilf(style->textStrokeWidth() / 2.0f));
|
|
int topGlyphOverflow = -strokeOverflow - topGlyphEdge;
|
|
int bottomGlyphOverflow = strokeOverflow + bottomGlyphEdge;
|
|
int leftGlyphOverflow = -strokeOverflow - leftGlyphEdge;
|
|
int rightGlyphOverflow = strokeOverflow + rightGlyphEdge;
|
|
|
|
TextEmphasisPosition emphasisMarkPosition;
|
|
if (style->textEmphasisMark() != TextEmphasisMarkNone && textBox->getEmphasisMarkPosition(style, emphasisMarkPosition)) {
|
|
int emphasisMarkHeight = style->font().emphasisMarkHeight(style->textEmphasisMarkString());
|
|
if (emphasisMarkPosition == TextEmphasisPositionOver)
|
|
topGlyphOverflow = std::min(topGlyphOverflow, -emphasisMarkHeight);
|
|
else
|
|
bottomGlyphOverflow = std::max(bottomGlyphOverflow, emphasisMarkHeight);
|
|
}
|
|
|
|
// If letter-spacing is negative, we should factor that into right layout overflow. (Even in RTL, letter-spacing is
|
|
// applied to the right, so this is not an issue with left overflow.
|
|
rightGlyphOverflow -= std::min(0, (int)style->font().fontDescription().letterSpacing());
|
|
|
|
LayoutUnit textShadowLogicalTop;
|
|
LayoutUnit textShadowLogicalBottom;
|
|
style->getTextShadowBlockDirectionExtent(textShadowLogicalTop, textShadowLogicalBottom);
|
|
|
|
LayoutUnit childOverflowLogicalTop = std::min<LayoutUnit>(textShadowLogicalTop + topGlyphOverflow, topGlyphOverflow);
|
|
LayoutUnit childOverflowLogicalBottom = std::max<LayoutUnit>(textShadowLogicalBottom + bottomGlyphOverflow, bottomGlyphOverflow);
|
|
|
|
LayoutUnit textShadowLogicalLeft;
|
|
LayoutUnit textShadowLogicalRight;
|
|
style->getTextShadowInlineDirectionExtent(textShadowLogicalLeft, textShadowLogicalRight);
|
|
|
|
LayoutUnit childOverflowLogicalLeft = std::min<LayoutUnit>(textShadowLogicalLeft + leftGlyphOverflow, leftGlyphOverflow);
|
|
LayoutUnit childOverflowLogicalRight = std::max<LayoutUnit>(textShadowLogicalRight + rightGlyphOverflow, rightGlyphOverflow);
|
|
|
|
LayoutUnit logicalTopVisualOverflow = std::min(textBox->pixelSnappedLogicalTop() + childOverflowLogicalTop, logicalVisualOverflow.y());
|
|
LayoutUnit logicalBottomVisualOverflow = std::max(textBox->pixelSnappedLogicalBottom() + childOverflowLogicalBottom, logicalVisualOverflow.maxY());
|
|
LayoutUnit logicalLeftVisualOverflow = std::min(textBox->pixelSnappedLogicalLeft() + childOverflowLogicalLeft, logicalVisualOverflow.x());
|
|
LayoutUnit logicalRightVisualOverflow = std::max(textBox->pixelSnappedLogicalRight() + childOverflowLogicalRight, logicalVisualOverflow.maxX());
|
|
|
|
logicalVisualOverflow = LayoutRect(logicalLeftVisualOverflow, logicalTopVisualOverflow,
|
|
logicalRightVisualOverflow - logicalLeftVisualOverflow, logicalBottomVisualOverflow - logicalTopVisualOverflow);
|
|
|
|
textBox->setLogicalOverflowRect(logicalVisualOverflow);
|
|
}
|
|
|
|
inline void InlineFlowBox::addReplacedChildOverflow(const InlineBox* inlineBox, LayoutRect& logicalLayoutOverflow, LayoutRect& logicalVisualOverflow)
|
|
{
|
|
RenderBox& box = toRenderBox(inlineBox->renderer());
|
|
|
|
// Visual overflow only propagates if the box doesn't have a self-painting layer. This rectangle does not include
|
|
// transforms or relative positioning (since those objects always have self-painting layers), but it does need to be adjusted
|
|
// for writing-mode differences.
|
|
if (!box.hasSelfPaintingLayer()) {
|
|
LayoutRect childLogicalVisualOverflow = box.visualOverflowRect();
|
|
childLogicalVisualOverflow.move(inlineBox->logicalLeft(), inlineBox->logicalTop());
|
|
logicalVisualOverflow.unite(childLogicalVisualOverflow);
|
|
}
|
|
|
|
// Layout overflow internal to the child box only propagates if the child box doesn't have overflow clip set.
|
|
// Otherwise the child border box propagates as layout overflow. This rectangle must include transforms and relative positioning
|
|
// and be adjusted for writing-mode differences.
|
|
LayoutRect childLogicalLayoutOverflow = box.layoutOverflowRectForPropagation();
|
|
childLogicalLayoutOverflow.move(inlineBox->logicalLeft(), inlineBox->logicalTop());
|
|
logicalLayoutOverflow.unite(childLogicalLayoutOverflow);
|
|
}
|
|
|
|
void InlineFlowBox::computeOverflow(LayoutUnit lineTop, LayoutUnit lineBottom, GlyphOverflowAndFallbackFontsMap& textBoxDataMap)
|
|
{
|
|
// If we know we have no overflow, we can just bail.
|
|
if (knownToHaveNoOverflow()) {
|
|
ASSERT(!m_overflow);
|
|
return;
|
|
}
|
|
|
|
if (m_overflow)
|
|
m_overflow.clear();
|
|
|
|
// Visual overflow just includes overflow for stuff we need to issues paint invalidations for ourselves. Self-painting layers are ignored.
|
|
// Layout overflow is used to determine scrolling extent, so it still includes child layers and also factors in
|
|
// transforms, relative positioning, etc.
|
|
LayoutRect logicalLayoutOverflow(enclosingLayoutRect(logicalFrameRectIncludingLineHeight(lineTop, lineBottom)));
|
|
LayoutRect logicalVisualOverflow(logicalLayoutOverflow);
|
|
|
|
addBoxShadowVisualOverflow(logicalVisualOverflow);
|
|
addBorderOutsetVisualOverflow(logicalVisualOverflow);
|
|
addOutlineVisualOverflow(logicalVisualOverflow);
|
|
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
if (curr->renderer().isText()) {
|
|
InlineTextBox* text = toInlineTextBox(curr);
|
|
LayoutRect textBoxOverflow(enclosingLayoutRect(text->logicalFrameRect()));
|
|
addTextBoxVisualOverflow(text, textBoxDataMap, textBoxOverflow);
|
|
logicalVisualOverflow.unite(textBoxOverflow);
|
|
} else if (curr->renderer().isRenderInline()) {
|
|
InlineFlowBox* flow = toInlineFlowBox(curr);
|
|
flow->computeOverflow(lineTop, lineBottom, textBoxDataMap);
|
|
if (!flow->boxModelObject()->hasSelfPaintingLayer())
|
|
logicalVisualOverflow.unite(flow->logicalVisualOverflowRect(lineTop, lineBottom));
|
|
LayoutRect childLayoutOverflow = flow->logicalLayoutOverflowRect(lineTop, lineBottom);
|
|
childLayoutOverflow.move(flow->boxModelObject()->relativePositionLogicalOffset());
|
|
logicalLayoutOverflow.unite(childLayoutOverflow);
|
|
} else {
|
|
addReplacedChildOverflow(curr, logicalLayoutOverflow, logicalVisualOverflow);
|
|
}
|
|
}
|
|
|
|
setOverflowFromLogicalRects(logicalLayoutOverflow, logicalVisualOverflow, lineTop, lineBottom);
|
|
}
|
|
|
|
void InlineFlowBox::setLayoutOverflow(const LayoutRect& rect, const LayoutRect& frameBox)
|
|
{
|
|
if (frameBox.contains(rect) || rect.isEmpty())
|
|
return;
|
|
|
|
if (!m_overflow)
|
|
m_overflow = adoptPtr(new RenderOverflow(frameBox, frameBox));
|
|
|
|
m_overflow->setLayoutOverflow(rect);
|
|
}
|
|
|
|
void InlineFlowBox::setVisualOverflow(const LayoutRect& rect, const LayoutRect& frameBox)
|
|
{
|
|
if (frameBox.contains(rect) || rect.isEmpty())
|
|
return;
|
|
|
|
if (!m_overflow)
|
|
m_overflow = adoptPtr(new RenderOverflow(frameBox, frameBox));
|
|
|
|
m_overflow->setVisualOverflow(rect);
|
|
}
|
|
|
|
void InlineFlowBox::setOverflowFromLogicalRects(const LayoutRect& logicalLayoutOverflow, const LayoutRect& logicalVisualOverflow, LayoutUnit lineTop, LayoutUnit lineBottom)
|
|
{
|
|
LayoutRect frameBox = enclosingLayoutRect(frameRectIncludingLineHeight(lineTop, lineBottom));
|
|
setLayoutOverflow(logicalLayoutOverflow, frameBox);
|
|
setVisualOverflow(logicalVisualOverflow, frameBox);
|
|
}
|
|
|
|
bool InlineFlowBox::nodeAtPoint(const HitTestRequest& request, HitTestResult& result, const HitTestLocation& locationInContainer, const LayoutPoint& accumulatedOffset, LayoutUnit lineTop, LayoutUnit lineBottom)
|
|
{
|
|
LayoutRect overflowRect(visualOverflowRect(lineTop, lineBottom));
|
|
overflowRect.moveBy(accumulatedOffset);
|
|
if (!locationInContainer.intersects(overflowRect))
|
|
return false;
|
|
|
|
// Check children first.
|
|
// We need to account for culled inline parents of the hit-tested nodes, so that they may also get included in area-based hit-tests.
|
|
RenderObject* culledParent = 0;
|
|
for (InlineBox* curr = lastChild(); curr; curr = curr->prevOnLine()) {
|
|
if (curr->renderer().isText() || !curr->boxModelObject()->hasSelfPaintingLayer()) {
|
|
RenderObject* newParent = 0;
|
|
// Culled parents are only relevant for area-based hit-tests, so ignore it in point-based ones.
|
|
if (locationInContainer.isRectBasedTest()) {
|
|
newParent = curr->renderer().parent();
|
|
if (newParent == renderer())
|
|
newParent = 0;
|
|
}
|
|
// Check the culled parent after all its children have been checked, to do this we wait until
|
|
// we are about to test an element with a different parent.
|
|
if (newParent != culledParent) {
|
|
if (!newParent || !newParent->isDescendantOf(culledParent)) {
|
|
while (culledParent && culledParent != renderer() && culledParent != newParent) {
|
|
if (culledParent->isRenderInline() && toRenderInline(culledParent)->hitTestCulledInline(request, result, locationInContainer, accumulatedOffset))
|
|
return true;
|
|
culledParent = culledParent->parent();
|
|
}
|
|
}
|
|
culledParent = newParent;
|
|
}
|
|
if (curr->nodeAtPoint(request, result, locationInContainer, accumulatedOffset, lineTop, lineBottom)) {
|
|
renderer().updateHitTestResult(result, locationInContainer.point() - toLayoutSize(accumulatedOffset));
|
|
return true;
|
|
}
|
|
}
|
|
}
|
|
// Check any culled ancestor of the final children tested.
|
|
while (culledParent && culledParent != renderer()) {
|
|
if (culledParent->isRenderInline() && toRenderInline(culledParent)->hitTestCulledInline(request, result, locationInContainer, accumulatedOffset))
|
|
return true;
|
|
culledParent = culledParent->parent();
|
|
}
|
|
|
|
// Now check ourselves. Pixel snap hit testing.
|
|
// Move x/y to our coordinates.
|
|
LayoutRect rect(roundedFrameRect());
|
|
rect.moveBy(accumulatedOffset);
|
|
|
|
if (visibleToHitTestRequest(request) && locationInContainer.intersects(rect)) {
|
|
renderer().updateHitTestResult(result, locationInContainer.point() - toLayoutSize(accumulatedOffset)); // Don't add in m_x or m_y here, we want coords in the containing block's space.
|
|
if (!result.addNodeToRectBasedTestResult(renderer().node(), request, locationInContainer, rect))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
void InlineFlowBox::paint(PaintInfo& paintInfo, const LayoutPoint& paintOffset, LayoutUnit lineTop, LayoutUnit lineBottom, Vector<RenderBox*>& layers)
|
|
{
|
|
LayoutRect overflowRect(visualOverflowRect(lineTop, lineBottom));
|
|
overflowRect.moveBy(paintOffset);
|
|
|
|
if (!paintInfo.rect.intersects(pixelSnappedIntRect(overflowRect)))
|
|
return;
|
|
|
|
paintBoxDecorationBackground(paintInfo, paintOffset);
|
|
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isText() || !curr->boxModelObject()->hasSelfPaintingLayer())
|
|
curr->paint(paintInfo, paintOffset, lineTop, lineBottom, layers);
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::paintFillLayers(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect)
|
|
{
|
|
if (fillLayer.next())
|
|
paintFillLayers(paintInfo, c, *fillLayer.next(), rect);
|
|
paintFillLayer(paintInfo, c, fillLayer, rect);
|
|
}
|
|
|
|
bool InlineFlowBox::boxShadowCanBeAppliedToBackground(const FillLayer& lastBackgroundLayer) const
|
|
{
|
|
// The checks here match how paintFillLayer() decides whether to clip (if it does, the shadow
|
|
// would be clipped out, so it has to be drawn separately).
|
|
StyleImage* image = lastBackgroundLayer.image();
|
|
bool hasFillImage = image && image->canRender(renderer());
|
|
return (!hasFillImage && !renderer().style()->hasBorderRadius()) || (!prevLineBox() && !nextLineBox()) || !parent();
|
|
}
|
|
|
|
void InlineFlowBox::paintFillLayer(const PaintInfo& paintInfo, const Color& c, const FillLayer& fillLayer, const LayoutRect& rect)
|
|
{
|
|
StyleImage* img = fillLayer.image();
|
|
bool hasFillImage = img && img->canRender(renderer());
|
|
if ((!hasFillImage && !renderer().style()->hasBorderRadius()) || (!prevLineBox() && !nextLineBox()) || !parent()) {
|
|
boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, rect, BackgroundBleedNone, this, rect.size());
|
|
} else if (renderer().style()->boxDecorationBreak() == DCLONE) {
|
|
GraphicsContextStateSaver stateSaver(*paintInfo.context);
|
|
paintInfo.context->clip(LayoutRect(rect.x(), rect.y(), width(), height()));
|
|
boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, rect, BackgroundBleedNone, this, rect.size());
|
|
} else {
|
|
// We have a fill image that spans multiple lines.
|
|
// We need to adjust tx and ty by the width of all previous lines.
|
|
// Think of background painting on inlines as though you had one long line, a single continuous
|
|
// strip. Even though that strip has been broken up across multiple lines, you still paint it
|
|
// as though you had one single line. This means each line has to pick up the background where
|
|
// the previous line left off.
|
|
LayoutUnit logicalOffsetOnLine = 0;
|
|
LayoutUnit totalLogicalWidth;
|
|
if (renderer().style()->direction() == LTR) {
|
|
for (InlineFlowBox* curr = prevLineBox(); curr; curr = curr->prevLineBox())
|
|
logicalOffsetOnLine += curr->logicalWidth();
|
|
totalLogicalWidth = logicalOffsetOnLine;
|
|
for (InlineFlowBox* curr = this; curr; curr = curr->nextLineBox())
|
|
totalLogicalWidth += curr->logicalWidth();
|
|
} else {
|
|
for (InlineFlowBox* curr = nextLineBox(); curr; curr = curr->nextLineBox())
|
|
logicalOffsetOnLine += curr->logicalWidth();
|
|
totalLogicalWidth = logicalOffsetOnLine;
|
|
for (InlineFlowBox* curr = this; curr; curr = curr->prevLineBox())
|
|
totalLogicalWidth += curr->logicalWidth();
|
|
}
|
|
LayoutUnit stripX = rect.x() - logicalOffsetOnLine;
|
|
LayoutUnit stripY = rect.y();
|
|
LayoutUnit stripWidth = totalLogicalWidth;
|
|
LayoutUnit stripHeight = static_cast<LayoutUnit>(height());
|
|
|
|
GraphicsContextStateSaver stateSaver(*paintInfo.context);
|
|
paintInfo.context->clip(LayoutRect(rect.x(), rect.y(), width(), height()));
|
|
boxModelObject()->paintFillLayerExtended(paintInfo, c, fillLayer, LayoutRect(stripX, stripY, stripWidth, stripHeight), BackgroundBleedNone, this, rect.size());
|
|
}
|
|
}
|
|
|
|
void InlineFlowBox::paintBoxShadow(const PaintInfo& info, RenderStyle* s, ShadowStyle shadowStyle, const LayoutRect& paintRect)
|
|
{
|
|
if ((!prevLineBox() && !nextLineBox()) || !parent())
|
|
boxModelObject()->paintBoxShadow(info, paintRect, s, shadowStyle);
|
|
else {
|
|
// FIXME: We can do better here in the multi-line case. We want to push a clip so that the shadow doesn't
|
|
// protrude incorrectly at the edges, and we want to possibly include shadows cast from the previous/following lines
|
|
boxModelObject()->paintBoxShadow(info, paintRect, s, shadowStyle, includeLogicalLeftEdge(), includeLogicalRightEdge());
|
|
}
|
|
}
|
|
|
|
static LayoutRect clipRectForNinePieceImageStrip(InlineFlowBox* box, const NinePieceImage& image, const LayoutRect& paintRect)
|
|
{
|
|
LayoutRect clipRect(paintRect);
|
|
RenderStyle* style = box->renderer().style();
|
|
LayoutBoxExtent outsets = style->imageOutsets(image);
|
|
clipRect.setY(paintRect.y() - outsets.top());
|
|
clipRect.setHeight(paintRect.height() + outsets.top() + outsets.bottom());
|
|
if (box->includeLogicalLeftEdge()) {
|
|
clipRect.setX(paintRect.x() - outsets.left());
|
|
clipRect.setWidth(paintRect.width() + outsets.left());
|
|
}
|
|
if (box->includeLogicalRightEdge())
|
|
clipRect.setWidth(clipRect.width() + outsets.right());
|
|
return clipRect;
|
|
}
|
|
|
|
void InlineFlowBox::paintBoxDecorationBackground(PaintInfo& paintInfo, const LayoutPoint& paintOffset)
|
|
{
|
|
// You can use p::first-line to specify a background. If so, the root line boxes for
|
|
// a line may actually have to paint a background.
|
|
RenderStyle* styleToUse = renderer().style(isFirstLineStyle());
|
|
bool shouldPaintBoxDecorationBackground;
|
|
if (parent())
|
|
shouldPaintBoxDecorationBackground = renderer().hasBoxDecorationBackground();
|
|
else
|
|
shouldPaintBoxDecorationBackground = isFirstLineStyle() && styleToUse != renderer().style();
|
|
|
|
if (!shouldPaintBoxDecorationBackground)
|
|
return;
|
|
|
|
// Pixel snap background/border painting.
|
|
LayoutRect frameRect = roundedFrameRect();
|
|
|
|
// Move x/y to our coordinates.
|
|
LayoutRect localRect(frameRect);
|
|
LayoutPoint adjustedPaintOffset = paintOffset + localRect.location();
|
|
|
|
LayoutRect paintRect = LayoutRect(adjustedPaintOffset, frameRect.size());
|
|
|
|
// Shadow comes first and is behind the background and border.
|
|
if (!boxModelObject()->boxShadowShouldBeAppliedToBackground(BackgroundBleedNone, this))
|
|
paintBoxShadow(paintInfo, styleToUse, Normal, paintRect);
|
|
|
|
Color backgroundColor = renderer().resolveColor(styleToUse, CSSPropertyBackgroundColor);
|
|
paintFillLayers(paintInfo, backgroundColor, styleToUse->backgroundLayers(), paintRect);
|
|
paintBoxShadow(paintInfo, styleToUse, Inset, paintRect);
|
|
|
|
// :first-line cannot be used to put borders on a line. Always paint borders with our
|
|
// non-first-line style.
|
|
if (parent() && renderer().style()->hasBorder()) {
|
|
const NinePieceImage& borderImage = renderer().style()->borderImage();
|
|
StyleImage* borderImageSource = borderImage.image();
|
|
bool hasBorderImage = borderImageSource && borderImageSource->canRender(renderer());
|
|
if (hasBorderImage && !borderImageSource->isLoaded())
|
|
return; // Don't paint anything while we wait for the image to load.
|
|
|
|
// The simple case is where we either have no border image or we are the only box for this object.
|
|
// In those cases only a single call to draw is required.
|
|
if (!hasBorderImage || (!prevLineBox() && !nextLineBox())) {
|
|
boxModelObject()->paintBorder(paintInfo, paintRect, renderer().style(isFirstLineStyle()), BackgroundBleedNone, includeLogicalLeftEdge(), includeLogicalRightEdge());
|
|
} else {
|
|
// We have a border image that spans multiple lines.
|
|
// We need to adjust tx and ty by the width of all previous lines.
|
|
// Think of border image painting on inlines as though you had one long line, a single continuous
|
|
// strip. Even though that strip has been broken up across multiple lines, you still paint it
|
|
// as though you had one single line. This means each line has to pick up the image where
|
|
// the previous line left off.
|
|
// FIXME: What the heck do we do with RTL here? The math we're using is obviously not right,
|
|
// but it isn't even clear how this should work at all.
|
|
LayoutUnit logicalOffsetOnLine = 0;
|
|
for (InlineFlowBox* curr = prevLineBox(); curr; curr = curr->prevLineBox())
|
|
logicalOffsetOnLine += curr->logicalWidth();
|
|
LayoutUnit totalLogicalWidth = logicalOffsetOnLine;
|
|
for (InlineFlowBox* curr = this; curr; curr = curr->nextLineBox())
|
|
totalLogicalWidth += curr->logicalWidth();
|
|
LayoutUnit stripX = adjustedPaintOffset.x() - logicalOffsetOnLine;
|
|
LayoutUnit stripY = adjustedPaintOffset.y();
|
|
LayoutUnit stripWidth = totalLogicalWidth;
|
|
LayoutUnit stripHeight = frameRect.height();
|
|
|
|
LayoutRect clipRect = clipRectForNinePieceImageStrip(this, borderImage, paintRect);
|
|
GraphicsContextStateSaver stateSaver(*paintInfo.context);
|
|
paintInfo.context->clip(clipRect);
|
|
boxModelObject()->paintBorder(paintInfo, LayoutRect(stripX, stripY, stripWidth, stripHeight), renderer().style(isFirstLineStyle()));
|
|
}
|
|
}
|
|
}
|
|
|
|
InlineBox* InlineFlowBox::firstLeafChild() const
|
|
{
|
|
InlineBox* leaf = 0;
|
|
for (InlineBox* child = firstChild(); child && !leaf; child = child->nextOnLine())
|
|
leaf = child->isLeaf() ? child : toInlineFlowBox(child)->firstLeafChild();
|
|
return leaf;
|
|
}
|
|
|
|
InlineBox* InlineFlowBox::lastLeafChild() const
|
|
{
|
|
InlineBox* leaf = 0;
|
|
for (InlineBox* child = lastChild(); child && !leaf; child = child->prevOnLine())
|
|
leaf = child->isLeaf() ? child : toInlineFlowBox(child)->lastLeafChild();
|
|
return leaf;
|
|
}
|
|
|
|
RenderObject::SelectionState InlineFlowBox::selectionState()
|
|
{
|
|
return RenderObject::SelectionNone;
|
|
}
|
|
|
|
bool InlineFlowBox::canAccommodateEllipsis(bool ltr, int blockEdge, int ellipsisWidth) const
|
|
{
|
|
for (InlineBox *box = firstChild(); box; box = box->nextOnLine()) {
|
|
if (!box->canAccommodateEllipsis(ltr, blockEdge, ellipsisWidth))
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
float InlineFlowBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, float &truncatedWidth, bool& foundBox)
|
|
{
|
|
float result = -1;
|
|
// We iterate over all children, the foundBox variable tells us when we've found the
|
|
// box containing the ellipsis. All boxes after that one in the flow are hidden.
|
|
// If our flow is ltr then iterate over the boxes from left to right, otherwise iterate
|
|
// from right to left. Varying the order allows us to correctly hide the boxes following the ellipsis.
|
|
InlineBox* box = ltr ? firstChild() : lastChild();
|
|
|
|
// NOTE: these will cross after foundBox = true.
|
|
int visibleLeftEdge = blockLeftEdge;
|
|
int visibleRightEdge = blockRightEdge;
|
|
|
|
while (box) {
|
|
int currResult = box->placeEllipsisBox(ltr, visibleLeftEdge, visibleRightEdge, ellipsisWidth, truncatedWidth, foundBox);
|
|
if (currResult != -1 && result == -1)
|
|
result = currResult;
|
|
|
|
if (ltr) {
|
|
visibleLeftEdge += box->logicalWidth();
|
|
box = box->nextOnLine();
|
|
}
|
|
else {
|
|
visibleRightEdge -= box->logicalWidth();
|
|
box = box->prevOnLine();
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void InlineFlowBox::clearTruncation()
|
|
{
|
|
for (InlineBox *box = firstChild(); box; box = box->nextOnLine())
|
|
box->clearTruncation();
|
|
}
|
|
|
|
LayoutUnit InlineFlowBox::computeOverAnnotationAdjustment(LayoutUnit allowedPosition) const
|
|
{
|
|
LayoutUnit result = 0;
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
if (curr->isInlineFlowBox())
|
|
result = std::max(result, toInlineFlowBox(curr)->computeOverAnnotationAdjustment(allowedPosition));
|
|
|
|
if (curr->isInlineTextBox()) {
|
|
RenderStyle* style = curr->renderer().style(isFirstLineStyle());
|
|
TextEmphasisPosition emphasisMarkPosition;
|
|
if (style->textEmphasisMark() != TextEmphasisMarkNone && toInlineTextBox(curr)->getEmphasisMarkPosition(style, emphasisMarkPosition) && emphasisMarkPosition == TextEmphasisPositionOver) {
|
|
int topOfEmphasisMark = curr->logicalTop() - style->font().emphasisMarkHeight(style->textEmphasisMarkString());
|
|
result = std::max(result, allowedPosition - topOfEmphasisMark);
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
LayoutUnit InlineFlowBox::computeUnderAnnotationAdjustment(LayoutUnit allowedPosition) const
|
|
{
|
|
LayoutUnit result = 0;
|
|
for (InlineBox* curr = firstChild(); curr; curr = curr->nextOnLine()) {
|
|
if (curr->renderer().isOutOfFlowPositioned())
|
|
continue; // Positioned placeholders don't affect calculations.
|
|
|
|
if (curr->isInlineFlowBox())
|
|
result = std::max(result, toInlineFlowBox(curr)->computeUnderAnnotationAdjustment(allowedPosition));
|
|
|
|
if (curr->isInlineTextBox()) {
|
|
RenderStyle* style = curr->renderer().style(isFirstLineStyle());
|
|
if (style->textEmphasisMark() != TextEmphasisMarkNone && style->textEmphasisPosition() == TextEmphasisPositionUnder) {
|
|
LayoutUnit bottomOfEmphasisMark = curr->logicalBottom() + style->font().emphasisMarkHeight(style->textEmphasisMarkString());
|
|
result = std::max(result, bottomOfEmphasisMark - allowedPosition);
|
|
}
|
|
}
|
|
}
|
|
return result;
|
|
}
|
|
|
|
void InlineFlowBox::collectLeafBoxesInLogicalOrder(Vector<InlineBox*>& leafBoxesInLogicalOrder, CustomInlineBoxRangeReverse customReverseImplementation, void* userData) const
|
|
{
|
|
InlineBox* leaf = firstLeafChild();
|
|
|
|
// FIXME: The reordering code is a copy of parts from BidiResolver::createBidiRunsForLine, operating directly on InlineBoxes, instead of BidiRuns.
|
|
// Investigate on how this code could possibly be shared.
|
|
unsigned char minLevel = 128;
|
|
unsigned char maxLevel = 0;
|
|
|
|
// First find highest and lowest levels, and initialize leafBoxesInLogicalOrder with the leaf boxes in visual order.
|
|
for (; leaf; leaf = leaf->nextLeafChild()) {
|
|
minLevel = std::min(minLevel, leaf->bidiLevel());
|
|
maxLevel = std::max(maxLevel, leaf->bidiLevel());
|
|
leafBoxesInLogicalOrder.append(leaf);
|
|
}
|
|
|
|
if (renderer().style()->rtlOrdering() == VisualOrder)
|
|
return;
|
|
|
|
// Reverse of reordering of the line (L2 according to Bidi spec):
|
|
// L2. From the highest level found in the text to the lowest odd level on each line,
|
|
// reverse any contiguous sequence of characters that are at that level or higher.
|
|
|
|
// Reversing the reordering of the line is only done up to the lowest odd level.
|
|
if (!(minLevel % 2))
|
|
++minLevel;
|
|
|
|
Vector<InlineBox*>::iterator end = leafBoxesInLogicalOrder.end();
|
|
while (minLevel <= maxLevel) {
|
|
Vector<InlineBox*>::iterator it = leafBoxesInLogicalOrder.begin();
|
|
while (it != end) {
|
|
while (it != end) {
|
|
if ((*it)->bidiLevel() >= minLevel)
|
|
break;
|
|
++it;
|
|
}
|
|
Vector<InlineBox*>::iterator first = it;
|
|
while (it != end) {
|
|
if ((*it)->bidiLevel() < minLevel)
|
|
break;
|
|
++it;
|
|
}
|
|
Vector<InlineBox*>::iterator last = it;
|
|
if (customReverseImplementation) {
|
|
ASSERT(userData);
|
|
(*customReverseImplementation)(userData, first, last);
|
|
} else
|
|
std::reverse(first, last);
|
|
}
|
|
++minLevel;
|
|
}
|
|
}
|
|
|
|
#ifndef NDEBUG
|
|
|
|
const char* InlineFlowBox::boxName() const
|
|
{
|
|
return "InlineFlowBox";
|
|
}
|
|
|
|
void InlineFlowBox::showLineTreeAndMark(const InlineBox* markedBox1, const char* markedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const RenderObject* obj, int depth) const
|
|
{
|
|
InlineBox::showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLabel2, obj, depth);
|
|
for (const InlineBox* box = firstChild(); box; box = box->nextOnLine())
|
|
box->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLabel2, obj, depth + 1);
|
|
}
|
|
|
|
#endif
|
|
|
|
#if ENABLE(ASSERT)
|
|
void InlineFlowBox::checkConsistency() const
|
|
{
|
|
#ifdef CHECK_CONSISTENCY
|
|
ASSERT(!m_hasBadChildList);
|
|
const InlineBox* prev = 0;
|
|
for (const InlineBox* child = m_firstChild; child; child = child->nextOnLine()) {
|
|
ASSERT(child->parent() == this);
|
|
ASSERT(child->prevOnLine() == prev);
|
|
prev = child;
|
|
}
|
|
ASSERT(prev == m_lastChild);
|
|
#endif
|
|
}
|
|
|
|
#endif
|
|
|
|
} // namespace blink
|