Home
last modified time | relevance | path

Searched refs:lastBox (Results 1 – 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderTable.cpp195 RenderObject* lastBox = beforeChild; in addChild() local
196 …while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableSection() && needsTableSect… in addChild()
197 lastBox = lastBox->parent(); in addChild()
198 if (lastBox && lastBox->isAnonymous() && !isAfterContent(lastBox)) { in addChild()
199 if (beforeChild == lastBox) in addChild()
200 beforeChild = lastBox->slowFirstChild(); in addChild()
201 lastBox->addChild(child, beforeChild); in addChild()
DRenderTableSection.cpp145 RenderObject* lastBox = last; in addChild() local
146 while (lastBox && lastBox->parent()->isAnonymous() && !lastBox->isTableRow()) in addChild()
147 lastBox = lastBox->parent(); in addChild()
148 if (lastBox && lastBox->isAnonymous() && !lastBox->isBeforeOrAfterContent()) { in addChild()
149 lastBox->addChild(child, beforeChild); in addChild()
DRootInlineBox.cpp315 InlineBox* lastBox = lastSelectedBox(); in lineSelectionGap() local
322 &lastBox->parent()->renderer(), lastBox->logicalRight(), selTop, selHeight, paintInfo)); in lineSelectionGap()
332 if (firstBox && firstBox != lastBox) { in lineSelectionGap()
349 if (box == lastBox) in lineSelectionGap()
DRenderText.cpp608 InlineTextBox* lastBox = 0; in positionForPoint() local
626 lastBox = box; in positionForPoint()
629 if (lastBox) { in positionForPoint()
631 lineDirectionPointFitsInBox(pointLineDirection, lastBox, shouldAffinityBeDownstream); in positionForPoint()
632 …inityForBoxAfterAdjustingOffsetForBiDi(lastBox, lastBox->offsetForPosition(pointLineDirection.toFl… in positionForPoint()