Home | History | Annotate | Download | only in rendering

Lines Matching refs:childBox

190                     while (InlineBox* childBox = box->firstChild())
191 childBox->remove();
3307 RenderBox* childBox = floatingObject->renderer();
3308 int childLogicalLeftMargin = style()->isLeftToRightDirection() ? marginStartForChild(childBox) : marginEndForChild(childBox);
3316 IntRect oldRect(childBox->x(), childBox->y() , childBox->width(), childBox->height());
3318 if (childBox->style()->clear() & CLEFT)
3320 if (childBox->style()->clear() & CRIGHT)
3324 if (childBox->style()->floating() == FLEFT) {
3347 setLogicalLeftForChild(childBox, floatLogicalLeft + childLogicalLeftMargin);
3348 setLogicalTopForChild(childBox, logicalTop + marginBeforeForChild(childBox));
3351 RenderBlock* childBlock = childBox->isRenderBlock() ? toRenderBlock(childBox) : 0;
3353 if (!childBox->needsLayout())
3354 childBox->markForPaginationRelayoutIfNeeded();;
3355 childBox->layoutIfNeeded();
3359 int newLogicalTop = adjustForUnsplittableChild(childBox, logicalTop, true);
3372 setLogicalTopForChild(childBox, logicalTop + marginBeforeForChild(childBox));
3375 childBox->layoutIfNeeded();
3380 setLogicalHeightForFloat(floatingObject, logicalHeightForChild(childBox) + marginBeforeForChild(childBox) + marginAfterForChild(childBox));
3385 if (childBox->checkForRepaintDuringLayout())
3386 childBox->repaintDuringLayoutIfMoved(oldRect);
4260 for (RenderBox* childBox = lastChildBox(); childBox; childBox = childBox->previousSiblingBox()) {
4261 if (isChildHitTestCandidate(childBox))
4262 return positionForPointRespectingEditingBoundaries(this, childBox, pointInContents);
4265 for (RenderBox* childBox = firstChildBox(); childBox; childBox = childBox->nextSiblingBox()) {
4267 if (isChildHitTestCandidate(childBox) && pointInContents.y() < childBox->logicalBottom())
4268 return positionForPointRespectingEditingBoundaries(this, childBox, pointInContents);