Home | History | Annotate | Download | only in rendering

Lines Matching refs:blockRightEdge

102 void RootInlineBox::placeEllipsis(const AtomicString& ellipsisStr,  bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth,
116 if (ltr && (x() + logicalWidth() + ellipsisWidth) <= blockRightEdge) {
125 ellipsisBox->m_x = placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, foundBox);
128 float RootInlineBox::placeEllipsisBox(bool ltr, float blockLeftEdge, float blockRightEdge, float ellipsisWidth, bool& foundBox)
130 float result = InlineFlowBox::placeEllipsisBox(ltr, blockLeftEdge, blockRightEdge, ellipsisWidth, foundBox);
132 result = ltr ? blockRightEdge - ellipsisWidth : blockLeftEdge;