Home | History | Annotate | Download | only in rendering

Lines Matching defs:ltr

367     // So even if text-align is right, if direction is LTR, wide lines should overflow out of the right
571 if (direction == LTR)
577 if (direction == LTR)
726 WTF::Unicode::Direction direction = textDirection == LTR ? LeftToRight : RightToLeft;
727 RefPtr<BidiContext> context = BidiContext::create(textDirection == LTR ? 0 : 1, direction, isOverride, FromStyleOrDOM);
985 VisualDirectionOverride override = (styleToUse->rtlOrdering() == VisualOrder ? (styleToUse->direction() == LTR ? VisualLeftToRightOverride : VisualRightToLeftOverride) : NoVisualOverride);
1321 float spaceWidth = font.width(RenderBlockFlow::constructTextRun(t, font, &space, 1, t->style(), LTR));
2051 bool ltr = style()->isLeftToRightDirection();
2063 if (ltr)
2080 TextDirection ellipsisDirection = LTR;
2084 // For LTR text truncation, we want to get the right edge of our padding box, and then we want to see
2088 bool ltr = style()->isLeftToRightDirection();
2095 LayoutUnit lineBoxEdge = ltr ? currLogicalLeft + curr->logicalWidth() : currLogicalLeft;
2096 if ((ltr && lineBoxEdge > blockRightEdge) || (!ltr && lineBoxEdge < blockLeftEdge)) {
2103 LayoutUnit blockEdge = ltr ? blockRightEdge : blockLeftEdge;
2104 if (curr->lineCanAccommodateEllipsis(ltr, blockEdge, lineBoxEdge, width)) {
2105 float totalLogicalWidth = curr->placeEllipsis(ellipsisStr, ltr, blockLeftEdge.toFloat(), blockRightEdge.toFloat(), width.toFloat());
2110 if (ltr)