Home | History | Annotate | Download | only in rendering

Lines Matching refs:selectionBottom

231     LayoutUnit selectionBottom = heightOfBlock;
235 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, selectionBottom, setLineTop,
242 setLineTopBottomPositions(lineTop, lineBottom, heightOfBlock, heightOfBlock + maxHeight, selectionBottom);
403 LayoutUnit prevBottom = prevRootBox()->selectionBottom();
435 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
444 LayoutUnit RootInlineBox::selectionBottom() const
446 LayoutUnit selectionBottom = m_selectionBottom;
449 selectionBottom += !renderer().style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
452 return selectionBottom;
455 if (nextTop > selectionBottom && block().containsFloats()) {
461 LayoutUnit newLeft = block().logicalLeftOffsetForLine(selectionBottom, false);
462 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionBottom, false);
464 return selectionBottom;
472 return !block().style()->isFlippedBlocksWritingMode() ? std::max(lineTop(), selectionTop()) : std::min(lineBottom(), selectionBottom());