Home | History | Annotate | Download | only in rendering

Lines Matching refs:currChild

474     RenderBoxModelObject* currChild = this;
505 // *after* currChild and append them all to the clone.
507 blockCurr->moveChildrenTo(cloneBlock, currChild->nextSibling(), 0, afterContent);
510 currChild = curr;
517 // Now take all the children after currChild and remove them from the fromBlock
519 fromBlock->moveChildrenTo(toBlock, currChild->nextSibling(), 0);
5363 RenderObject* currChild = firstLetterBlock->firstChild();
5364 while (currChild && ((!currChild->isReplaced() && !currChild->isRenderButton() && !currChild->isMenuList()) || currChild->isFloatingOrPositioned()) && !currChild->isText()) {
5365 if (currChild->isFloatingOrPositioned()) {
5366 if (currChild->style()->styleType() == FIRST_LETTER) {
5367 currChild = currChild->firstChild();
5370 currChild = currChild->nextSibling();
5372 currChild = currChild->firstChild();
5376 while (currChild && currChild->isListMarker())
5377 currChild = currChild->nextSibling();
5379 if (!currChild)
5384 if (currChild->parent()->style()->styleType() == FIRST_LETTER) {
5385 RenderObject* firstLetter = currChild->parent();
5437 if (!currChild->isText() || currChild->isBR())
5441 RenderObject* firstLetterContainer = currChild->parent();
5447 currChild);
5458 firstLetterContainer->addChild(firstLetter, currChild);