HomeSort by relevance Sort by last modified time
    Searched refs:lastBox (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp 182 RenderObject* lastBox = beforeChild;
183 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableSection() && lastBox->style()->display() != TABLE_CAPTION && lastBox->style()->display() != TABLE_COLUMN_GROUP)
184 lastBox = lastBox->parent();
185 if (lastBox && lastBox->isAnonymous() && !isAfterContent(lastBox))
    [all...]
RenderNamedFlowThread.cpp 683 InlineTextBox* lastBox = 0;
686 lastBox = box;
689 ASSERT(lastBox);
690 if (lastBox)
691 range->setEnd(Position(toText(node), lastBox->start() + lastBox->len()));
RenderTableSection.cpp 146 RenderObject* lastBox = last;
147 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
148 lastBox = lastBox->parent();
149 if (lastBox && lastBox->isAnonymous() && !lastBox->isBeforeOrAfterContent()) {
150 lastBox->addChild(child, beforeChild)
    [all...]
RenderText.cpp 618 InlineTextBox* lastBox = 0;
636 lastBox = box;
639 if (lastBox) {
641 lineDirectionPointFitsInBox(pointLineDirection, lastBox, shouldAffinityBeDownstream);
642 return createPositionWithAffinityForBoxAfterAdjustingOffsetForBiDi(lastBox, lastBox->offsetForPosition(pointLineDirection) + lastBox->start(), shouldAffinityBeDownstream);
    [all...]
RootInlineBox.cpp 440 InlineBox* lastBox = lastSelectedBox();
446 lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo));
455 if (firstBox && firstBox != lastBox) {
472 if (box == lastBox)
    [all...]

Completed in 163 milliseconds