Home | History | Annotate | Download | only in rendering

Lines Matching full:direction

215         // It's sufficient to just check one direction, since it's illegal to have visible on only one overflow value.
265 if (style()->direction() == LTR)
352 switch (style()->boxReflect()->direction()) {
373 if (style()->boxReflect()->direction() == ReflectionLeft || style()->boxReflect()->direction() == ReflectionRight)
385 switch (style()->boxReflect()->direction()) {
412 bool RenderBox::scroll(ScrollDirection direction, ScrollGranularity granularity, float multiplier, Node** stopNode)
415 if (l && l->scroll(direction, granularity, multiplier)) {
426 return b->scroll(direction, granularity, multiplier, stopNode);
1384 if (cb->style()->direction() == LTR)
1462 || (!marginLeft.isAuto() && containingBlock()->style()->direction() == RTL && containingBlock()->style()->textAlign() == WEBKIT_LEFT)) {
1466 || (!marginRight.isAuto() && containingBlock()->style()->direction() == LTR && containingBlock()->style()->textAlign() == WEBKIT_RIGHT)) {
1806 if (containingBlock->style()->direction() == LTR) {
1837 // FIXME 1: Which RenderObject's 'direction' property should used: the
1867 // To match WinIE, in quirks mode use the parent's 'direction' property
1869 TextDirection containerDirection = (style()->htmlHacks()) ? parent()->style()->direction() : containerBlock->style()->direction();
2009 * in which case when direction of the containing block is 'ltr' ('rtl'),
2013 * ignore the value for 'left' (in case the 'direction' property of the
2014 * containing block is 'rtl') or 'right' (in case 'direction' is 'ltr')
2050 // Over-constrained, solve for left if direction is RTL
2054 // see FIXME 1 -- used to be "this->style()->direction()"
2069 * the 'direction' property of the containing block is 'ltr' set
2071 * static position. Then solve for 'left' (if 'direction is 'rtl')
2072 * or 'right' (if 'direction' is 'ltr').
2148 if (containerBlock->isRenderInline() && containerBlock->style()->direction() == RTL) {
2403 // To match WinIE, in quirks mode use the parent's 'direction' property
2405 TextDirection containerDirection = (style()->htmlHacks()) ? parent()->style()->direction() : containerBlock->style()->direction();
2425 * 2. If both 'left' and 'right' have the value 'auto', then if 'direction'
2427 * else if 'direction' is 'rtl', set 'right' to the static position.
2467 * in which case when the direction of the containing block is 'ltr'
2538 * for either 'left' (in case the 'direction' property of the
2539 * containing block is 'rtl') or 'right' (in case 'direction' is
2542 // NOTE: It is not necessary to solve for 'right' when the direction is
2554 if (containerBlock->isRenderInline() && containerBlock->style()->direction() == RTL) {
2708 TextDirection direction = box ? box->direction() : style()->direction();
2710 if ((!caretOffset) ^ (direction == LTR))