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

  /external/webkit/Source/WebCore/rendering/
RootInlineBox.cpp 409 int prevBottom = prevRootBox() ? prevRootBox()->selectionBottom() : block()->borderBefore() + block()->paddingBefore();
425 int RootInlineBox::selectionBottom() const
427 int selectionBottom = m_lineBottom;
430 selectionBottom += !renderer()->style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
433 return selectionBottom;
436 if (nextTop > selectionBottom && block()->containsFloats()) {
442 int newLeft = block()->logicalLeftOffsetForLine(selectionBottom, false);
443 int newRight = block()->logicalRightOffsetForLine(selectionBottom, false);
445 return selectionBottom;
    [all...]
InlineTextBox.cpp 102 int InlineTextBox::selectionBottom()
104 return root()->selectionBottom();
    [all...]

Completed in 110 milliseconds