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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RootInlineBox.h 70 LayoutUnit selectionBottom() const;
71 LayoutUnit selectionHeight() const { return max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
74 LayoutUnit selectionHeightAdjustedForPrecedingBlock() const { return max<LayoutUnit>(0, selectionBottom() - selectionTopAdjustedForPrecedingBlock()); }
RootInlineBox.cpp 535 LayoutUnit prevBottom = prevRootBox() ? prevRootBox()->selectionBottom() : block()->borderBefore() + block()->paddingBefore();
566 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
574 LayoutUnit RootInlineBox::selectionBottom() const
576 LayoutUnit selectionBottom = m_lineBottom;
579 selectionBottom += !renderer()->style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
582 return selectionBottom;
585 if (nextTop > selectionBottom && block()->containsFloats()) {
591 LayoutUnit newLeft = block()->logicalLeftOffsetForLine(selectionBottom, false);
592 LayoutUnit newRight = block()->logicalRightOffsetForLine(selectionBottom, false);
594 return selectionBottom;
    [all...]
InlineTextBox.cpp 126 LayoutUnit InlineTextBox::selectionBottom()
128 return root()->selectionBottom();
    [all...]
InlineTextBox.h 102 LayoutUnit selectionBottom();
RenderReplaced.cpp 474 LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
520 LayoutUnit newLogicalTop = root->block()->style()->isFlippedBlocksWritingMode() ? m_inlineBoxWrapper->logicalBottom() - root->selectionBottom() : root->selectionTop() - m_inlineBoxWrapper->logicalTop();
RenderListMarker.cpp     [all...]
RenderText.cpp 626 LayoutUnit bottom = rootBox->selectionBottom();
    [all...]
RenderBlock.cpp     [all...]

Completed in 62 milliseconds