Home
last modified time | relevance | path

Searched refs:boxToSplit (Results 1 – 1 of 1) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderBox.cpp4920 RenderBox* boxToSplit = toRenderBox(beforeChild->parent()); in splitAnonymousBoxesAroundChild() local
4921 if (boxToSplit->firstChild() != beforeChild && boxToSplit->isAnonymous()) { in splitAnonymousBoxesAroundChild()
4926 RenderBox* postBox = boxToSplit->createAnonymousBoxWithSameTypeAs(this); in splitAnonymousBoxesAroundChild()
4927 postBox->setChildrenInline(boxToSplit->childrenInline()); in splitAnonymousBoxesAroundChild()
4928 RenderBox* parentBox = toRenderBox(boxToSplit->parent()); in splitAnonymousBoxesAroundChild()
4933 … parentBox->virtualChildren()->insertChildNode(parentBox, postBox, boxToSplit->nextSibling()); in splitAnonymousBoxesAroundChild()
4934 boxToSplit->moveChildrenTo(postBox, beforeChild, 0, true); in splitAnonymousBoxesAroundChild()
4936 markBoxForRelayoutAfterSplit(boxToSplit); in splitAnonymousBoxesAroundChild()
4941 beforeChild = boxToSplit; in splitAnonymousBoxesAroundChild()