Home | History | Annotate | Download | only in rendering

Lines Matching defs:selectionTop

402 LayoutUnit RootInlineBox::selectionTop() const
404 LayoutUnit selectionTop = m_lineTop;
407 selectionTop -= !renderer().style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
410 return selectionTop;
413 if (prevBottom < selectionTop && block().containsFloats()) {
419 LayoutUnit newLeft = block().logicalLeftOffsetForLine(selectionTop, false);
420 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionTop, false);
422 return selectionTop;
430 LayoutUnit top = selectionTop();
461 LayoutUnit nextTop = nextRootBox()->selectionTop();
479 return !block().style()->isFlippedBlocksWritingMode() ? max(lineTop(), selectionTop()) : min(lineBottom(), selectionBottom());