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

/macosx-10.10/WebCore-7600.1.25/rendering/
H A DInlineTextBox.cpp328 float ellipsisX = flowIsLTR ? visibleRightEdge - ellipsisWidth : visibleLeftEdge + ellipsisWidth; local
333 bool ltrFullTruncation = flowIsLTR && ellipsisX <= left();
334 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= left() + logicalWidth();
342 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < right());
343 bool rtlEllipsisWithinBox = !flowIsLTR && (ellipsisX > left());
354 ellipsisX = ltr ? left() + visibleBoxWidth : right() - visibleBoxWidth;
357 int offset = offsetForPosition(ellipsisX, false);
363 return flowIsLTR ? std::min(ellipsisX, x()) : std::max(ellipsisX, right() - ellipsisWidth);

Completed in 207 milliseconds