Searched defs:selectionTop (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp136 LayoutUnit InlineTextBox::selectionTop() function in class:blink::InlineTextBox
138 return root().selectionTop();
216 LayoutUnit selTop = selectionTop();
626 LayoutUnit selectionTop = root().selectionTopAdjustedForPrecedingBlock(); local
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();
977 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1020 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1028 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, IntPoint(x(), selectionTop()), selHeigh
[all...]
H A DRootInlineBox.cpp393 LayoutUnit RootInlineBox::selectionTop() const function in class:blink::RootInlineBox
395 LayoutUnit selectionTop = m_lineTop; local
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...]

Completed in 91 milliseconds