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

/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGInlineTextBox.h42 virtual int selectionTop() { return top(); } function in class:WebCore::FINAL
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp121 LayoutUnit InlineTextBox::selectionTop() function in class:WebCore::InlineTextBox
123 return root()->selectionTop();
202 LayoutUnit selTop = selectionTop();
868 LayoutUnit selectionTop = root()->selectionTopAdjustedForPrecedingBlock(); local
870 int deltaY = roundToInt(renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop);
871 int selHeight = max(0, roundToInt(selectionBottom - selectionTop));
897 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1242 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1285 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1293 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, IntPoint(x(), selectionTop()), selHeigh
[all...]
H A DRootInlineBox.cpp525 LayoutUnit RootInlineBox::selectionTop() const function in class:WebCore::RootInlineBox
527 LayoutUnit selectionTop = m_lineTop; local
530 selectionTop -= !renderer()->style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
533 return selectionTop;
536 if (prevBottom < selectionTop && block()->containsFloats()) {
542 LayoutUnit newLeft = block()->logicalLeftOffsetForLine(selectionTop, false);
543 LayoutUnit newRight = block()->logicalRightOffsetForLine(selectionTop, false);
545 return selectionTop;
553 LayoutUnit top = selectionTop();
584 LayoutUnit nextTop = nextRootBox()->selectionTop();
[all...]

Completed in 226 milliseconds