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

  /external/webkit/Source/WebCore/rendering/
RootInlineBox.h 57 int selectionBottom() const;
58 int selectionHeight() const { return max(0, selectionBottom() - selectionTop()); }
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.h 94 int selectionBottom();
RenderReplaced.cpp 285 int bottom = root->selectionBottom();
331 int newLogicalTop = root->block()->style()->isFlippedBlocksWritingMode() ? m_inlineBoxWrapper->logicalBottom() - root->selectionBottom() : root->selectionTop() - m_inlineBoxWrapper->logicalTop();
InlineTextBox.cpp 101 int InlineTextBox::selectionBottom()
103 return root()->selectionBottom();
    [all...]
RenderText.cpp 449 if (firstTextBox() && pointBlockDirection < firstTextBox()->root()->selectionBottom() && pointLineDirection < firstTextBox()->logicalLeft()) {
466 int bottom = rootBox->selectionBottom();
    [all...]
RenderBlock.cpp     [all...]
RenderListMarker.cpp     [all...]

Completed in 339 milliseconds