Home | History | Annotate | Download | only in rendering

Lines Matching defs:ltr

317     // So even if text-align is right, if direction is LTR, wide lines should overflow out of the right
521 if (direction == LTR)
527 if (direction == LTR)
835 VisualDirectionOverride override = (styleToUse->rtlOrdering() == VisualOrder ? (styleToUse->direction() == LTR ? VisualLeftToRightOverride : VisualRightToLeftOverride) : NoVisualOverride);
1169 float spaceWidth = font.width(constructTextRun(t, font, &space, 1, t->style(), LTR));
1906 bool ltr = style()->isLeftToRightDirection();
1918 if (ltr)
1935 TextDirection ellipsisDirection = LTR;
1939 // For LTR text truncation, we want to get the right edge of our padding box, and then we want to see
1943 bool ltr = style()->isLeftToRightDirection();
1950 LayoutUnit lineBoxEdge = ltr ? currLogicalLeft + curr->logicalWidth() : currLogicalLeft;
1951 if ((ltr && lineBoxEdge > blockRightEdge) || (!ltr && lineBoxEdge < blockLeftEdge)) {
1958 LayoutUnit blockEdge = ltr ? blockRightEdge : blockLeftEdge;
1959 if (curr->lineCanAccommodateEllipsis(ltr, blockEdge, lineBoxEdge, width)) {
1960 float totalLogicalWidth = curr->placeEllipsis(ellipsisStr, ltr, blockLeftEdge.toFloat(), blockRightEdge.toFloat(), width.toFloat());
1965 if (ltr)