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 188 RenderObject* lastBox = beforeChild;
189 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableSection() && lastBox->style()->display() != TABLE_CAPTION && lastBox->style()->display() != TABLE_COLUMN_GROUP)
190 lastBox = lastBox->parent();
191 if (lastBox && lastBox->isAnonymous() && !isAfterContent(lastBox))
    [all...]
RenderNamedFlowThread.cpp 696 InlineTextBox* lastBox = 0;
699 lastBox = box;
702 ASSERT(lastBox);
703 if (lastBox)
704 range->setEnd(Position(toText(node), lastBox->start() + lastBox->len()));
RenderTableSection.cpp 148 RenderObject* lastBox = last;
149 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
150 lastBox = lastBox->parent();
151 if (lastBox && lastBox->isAnonymous() && !lastBox->isBeforeOrAfterContent()) {
152 lastBox->addChild(child, beforeChild)
    [all...]
RenderText.cpp 623 InlineTextBox* lastBox = 0;
641 lastBox = box;
644 if (lastBox) {
646 lineDirectionPointFitsInBox(pointLineDirection, lastBox, shouldAffinityBeDownstream);
647 return createPositionWithAffinityForBoxAfterAdjustingOffsetForBiDi(lastBox, lastBox->offsetForPosition(pointLineDirection) + lastBox->start(), shouldAffinityBeDownstream);
    [all...]
RootInlineBox.cpp 434 InlineBox* lastBox = lastSelectedBox();
440 lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo));
449 if (firstBox && firstBox != lastBox) {
466 if (box == lastBox)
    [all...]

Completed in 63 milliseconds