selectionBottom   148 Source/core/rendering/EllipsisBox.cpp     LayoutUnit selectionBottom = root().selectionBottom();
selectionBottom   151 Source/core/rendering/EllipsisBox.cpp     const int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - top);
selectionBottom   132 Source/core/rendering/InlineTextBox.cpp     return root().selectionBottom();
selectionBottom   859 Source/core/rendering/InlineTextBox.cpp     LayoutUnit selectionBottom = root().selectionBottom();
selectionBottom   862 Source/core/rendering/InlineTextBox.cpp     int deltaY = roundToInt(renderer().style()->isFlippedLinesWritingMode() ? selectionBottom - logicalBottom() : logicalTop() - selectionTop);
selectionBottom   863 Source/core/rendering/InlineTextBox.cpp     int selHeight = max(0, roundToInt(selectionBottom - selectionTop));
selectionBottom   889 Source/core/rendering/InlineTextBox.cpp     int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
selectionBottom  1233 Source/core/rendering/InlineTextBox.cpp         int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
selectionBottom  1276 Source/core/rendering/InlineTextBox.cpp     int deltaY = renderer().style()->isFlippedLinesWritingMode() ? selectionBottom() - logicalBottom() : logicalTop() - selectionTop();
selectionBottom   105 Source/core/rendering/InlineTextBox.h     LayoutUnit selectionBottom();
selectionBottom  3014 Source/core/rendering/RenderBlock.cpp         if (pointInLogicalContents.y() < root->selectionBottom() || (blocksAreFlipped && pointInLogicalContents.y() == root->selectionBottom())) {
selectionBottom  2651 Source/core/rendering/RenderBlockFlow.cpp         lastLogicalTop = rootBlock->blockDirectionOffset(offsetFromRootBlock) + lastSelectedLine->selectionBottom();
selectionBottom  2652 Source/core/rendering/RenderBlockFlow.cpp         lastLogicalLeft = logicalLeftSelectionOffset(rootBlock, lastSelectedLine->selectionBottom());
selectionBottom  2653 Source/core/rendering/RenderBlockFlow.cpp         lastLogicalRight = logicalRightSelectionOffset(rootBlock, lastSelectedLine->selectionBottom());
selectionBottom  1120 Source/core/rendering/RenderListMarker.cpp     LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
selectionBottom   538 Source/core/rendering/RenderReplaced.cpp     LayoutUnit bottom = rootBox ? rootBox->selectionBottom() : logicalBottom();
selectionBottom   584 Source/core/rendering/RenderReplaced.cpp     LayoutUnit newLogicalTop = root.block().style()->isFlippedBlocksWritingMode() ? inlineBoxWrapper()->logicalBottom() - root.selectionBottom() : root.selectionTop() - inlineBoxWrapper()->logicalTop();
selectionBottom   633 Source/core/rendering/RenderText.cpp             LayoutUnit bottom = rootBox.selectionBottom();
selectionBottom   412 Source/core/rendering/RootInlineBox.cpp     LayoutUnit prevBottom = prevRootBox()->selectionBottom();
selectionBottom   443 Source/core/rendering/RootInlineBox.cpp             LayoutUnit lastLineSelectionBottom = lastLine->selectionBottom() + offsetToBlockBefore.height();
selectionBottom   453 Source/core/rendering/RootInlineBox.cpp     LayoutUnit selectionBottom = m_lineBottom;
selectionBottom   456 Source/core/rendering/RootInlineBox.cpp         selectionBottom += !renderer().style()->isFlippedLinesWritingMode() ? computeUnderAnnotationAdjustment(m_lineBottom) : computeOverAnnotationAdjustment(m_lineBottom);
selectionBottom   459 Source/core/rendering/RootInlineBox.cpp         return selectionBottom;
selectionBottom   462 Source/core/rendering/RootInlineBox.cpp     if (nextTop > selectionBottom && block().containsFloats()) {
selectionBottom   468 Source/core/rendering/RootInlineBox.cpp         LayoutUnit newLeft = block().logicalLeftOffsetForLine(selectionBottom, false);
selectionBottom   469 Source/core/rendering/RootInlineBox.cpp         LayoutUnit newRight = block().logicalRightOffsetForLine(selectionBottom, false);
selectionBottom   471 Source/core/rendering/RootInlineBox.cpp             return selectionBottom;
selectionBottom   479 Source/core/rendering/RootInlineBox.cpp     return !block().style()->isFlippedBlocksWritingMode() ? max(lineTop(), selectionTop()) : min(lineBottom(), selectionBottom());
selectionBottom    67 Source/core/rendering/RootInlineBox.h     LayoutUnit selectionBottom() const;
selectionBottom    68 Source/core/rendering/RootInlineBox.h     LayoutUnit selectionHeight() const { return max<LayoutUnit>(0, selectionBottom() - selectionTop()); }
selectionBottom    71 Source/core/rendering/RootInlineBox.h     LayoutUnit selectionHeightAdjustedForPrecedingBlock() const { return max<LayoutUnit>(0, selectionBottom() - selectionTopAdjustedForPrecedingBlock()); }