Searched refs:ellipsisX (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DInlineTextBox.cpp275 float ellipsisX = flowIsLTR ? visibleRightEdge - ellipsisWidth : visibleLeftEdge + ellipsisWidth; local
280 bool ltrFullTruncation = flowIsLTR && ellipsisX <= logicalLeft();
281 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= logicalLeft() + logicalWidth();
289 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < logicalRight());
290 bool rtlEllipsisWithinBox = !flowIsLTR && (ellipsisX > logicalLeft());
301 ellipsisX = ltr ? logicalLeft() + visibleBoxWidth : logicalRight() - visibleBoxWidth;
304 int offset = offsetForPosition(ellipsisX, false);
310 return std::min(ellipsisX, logicalLeft());

Completed in 155 milliseconds