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

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
EllipsisBox.cpp 122 LayoutUnit selectionBottom = root().selectionBottom();
125 const int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - top);
RootInlineBox.cpp 231 LayoutUnit selectionBottom = heightOfBlock;
235 placeBoxesInBlockDirection(heightOfBlock, maxHeight, maxAscent, noQuirksMode, lineTop, lineBottom, selectionBottom, setLineTop,
242 setLineTopBottomPositions(lineTop, lineBottom, heightOfBlock, heightOfBlock + maxHeight, selectionBottom);
403 LayoutUnit prevBottom = prevRootBox()->selectionBottom();
435 LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
444 LayoutUnit RootInlineBox::selectionBottom() const
446 LayoutUnit selectionBottom = m_selectionBottom;
449 selectionBottom += !renderer().style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
452 return selectionBottom;
455 if (nextTop > selectionBottom && block().containsFloats())
    [all...]
InlineTextBox.cpp 141 LayoutUnit InlineTextBox::selectionBottom()
143 return root().selectionBottom();
625 LayoutUnit selectionBottom = root().selectionBottom();
628 int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop);
629 int selHeight = std::max(0, roundToInt(selectionBottom - selectionTop));
659 int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
    [all...]

Completed in 58 milliseconds