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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderTable.cpp 193 RenderObject* lastBox = beforeChild;
194 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableSection() && needsTableSection(lastBox))
195 lastBox = lastBox->parent();
196 if (lastBox && lastBox->isAnonymous() && !isAfterContent(lastBox)) {
    [all...]
RenderTableSection.cpp 166 RenderObject* lastBox = last;
167 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow())
168 lastBox = lastBox->parent();
169 if (lastBox && lastBox->isAnonymous() && !lastBox->isBeforeOrAfterContent()) {
170 lastBox->addChild(child, beforeChild)
    [all...]
RootInlineBox.cpp 306 InlineBox* lastBox = lastSelectedBox();
313 &lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo));
323 if (firstBox && firstBox != lastBox) {
340 if (box == lastBox)
    [all...]
RenderText.cpp 608 InlineTextBox* lastBox = 0;
626 lastBox = box;
629 if (lastBox) {
631 lineDirectionPointFitsInBox(pointLineDirection, lastBox, shouldAffinityBeDownstream);
632 return createPositionWithAffinityForBoxAfterAdjustingOffsetForBiDi(lastBox, lastBox->offsetForPosition(pointLineDirection.toFloat()) + lastBox->start(), shouldAffinityBeDownstream);
    [all...]

Completed in 533 milliseconds