HomeSort by relevance Sort by last modified time
    Searched defs:selectionTop (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.cpp 393 LayoutUnit RootInlineBox::selectionTop() const
395 LayoutUnit selectionTop = m_lineTop;
398 selectionTop -= !renderer().style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
401 return selectionTop;
404 if (prevBottom < selectionTop && block().containsFloats()) {
410 LayoutUnit newLeft = block().logicalLeftOffsetForLine(selectionTop, false);
411 LayoutUnit newRight = block().logicalRightOffsetForLine(selectionTop, false);
413 return selectionTop;
421 LayoutUnit top = selectionTop();
454 LayoutUnit nextTop = nextRootBox()->selectionTop();
    [all...]
InlineTextBox.cpp 136 LayoutUnit InlineTextBox::selectionTop()
138 return root().selectionTop();
216 LayoutUnit selTop = selectionTop();
626 LayoutUnit selectionTop = root().selectionTopAdjustedForPrecedingBlock();
628 int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop);
629 int selHeight = std::max(0, roundToInt(selectionBottom - selectionTop));
659 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
    [all...]

Completed in 122 milliseconds