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

/external/webkit/Source/WebCore/rendering/svg/
H A DSVGInlineTextBox.h43 virtual int selectionTop() { return m_y; } function in class:WebCore::SVGInlineTextBox
/external/webkit/Source/WebCore/rendering/
H A DRootInlineBox.cpp155 FloatRect rootRect(0, selectionTop(), logicalWidth(), selectionHeight());
173 FloatRect rootRect(tx + x(), ty + selectionTop(), logicalWidth(), selectionHeight());
399 int RootInlineBox::selectionTop() const function in class:WebCore::RootInlineBox
401 int selectionTop = m_lineTop; local
404 selectionTop -= !renderer()->style()->isFlippedLinesWritingMode() ? computeOverAnnotationAdjustment(m_lineTop) : computeUnderAnnotationAdjustment(m_lineTop);
407 return selectionTop;
410 if (prevBottom < selectionTop && block()->containsFloats()) {
416 int newLeft = block()->logicalLeftOffsetForLine(selectionTop, false);
417 int newRight = block()->logicalRightOffsetForLine(selectionTop, false);
419 return selectionTop;
[all...]
H A DInlineTextBox.cpp97 int InlineTextBox::selectionTop() function in class:WebCore::InlineTextBox
99 return root()->selectionTop();
183 int selTop = selectionTop();
824 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
849 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
870 FloatRect rootRect(tx + r->x(), ty + selectionTop(), r->logicalWidth(), selectionHeight());
1011 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1054 int deltaY = renderer()->style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
1062 IntRect markerRect = enclosingIntRect(font.selectionRectForText(run, IntPoint(m_x, selectionTop()), selHeight, sPos, ePos));
1086 int y = selectionTop();
[all...]

Completed in 100 milliseconds