Home | History | Annotate | Download | only in rendering

Lines Matching full:child

57 static int getBorderPaddingMargin(RenderBoxModelObject* child, bool endOfInline)
59 bool leftSide = (child->style()->direction() == LTR) ? !endOfInline : endOfInline;
61 return child->marginLeft() + child->paddingLeft() + child->borderLeft();
62 return child->marginRight() + child->paddingRight() + child->borderRight();
65 static int inlineWidth(RenderObject* child, bool start = true, bool end = true)
69 RenderObject* parent = child->parent();
71 if (start && !child->previousSibling())
73 if (end && !child->nextSibling())
75 child = parent;
76 parent = child->parent();
595 // If relayoutChildren is set and we have percentage padding, we also need to invalidate the child's pref widths.