Home | History | Annotate | Download | only in rendering

Lines Matching refs:continuation

167     // Destroy our continuation before anything other than anonymous children.
169 // have continuations of their own that are anonymous children of our continuation.
170 RenderBoxModelObject* continuation = this->continuation();
171 if (continuation) {
172 continuation->destroy();
242 // Ensure that all of our continuation blocks pick up the new style.
244 RenderBoxModelObject* nextCont = currCont->continuation();
318 RenderBlock* curr = toRenderBlock(continuation());
330 curr = toRenderBlock(curr->continuation());
346 RenderBoxModelObject* cont = flow->continuation();
356 // A continuation always consists of two potential candidates: a block or an anonymous
377 ASSERT(!continuation()); // We don't yet support column spans that aren't immediate children of the multi-column block.
472 // Hook |clone| up as the continuation of the middle block.
494 // Hook the clone up as a continuation of |curr|. Note we do encounter
496 // anonymous block, there's no need to do any continuation hookup, since we haven't
499 oldCont = blockCurr->continuation();
505 // has to move into the inline continuation. Call updateBeforeAfterContent to ensure that the inline's :after
539 // We can reuse this block and make it the preBlock of the next continuation.
670 // Make sure that none of the parent ancestors have a continuation.
674 if (curr->isRenderBlock() && toRenderBlock(curr)->continuation()) {
740 RenderBoxModelObject* oldContinuation = continuation();
744 // has to move into the inline continuation. Call updateBeforeAfterContent to ensure that our :after
808 if (continuation() && !isAnonymousBlock())
944 if (child->continuation() || (child->firstChild() && (child->isAnonymousColumnSpanBlock() || child->isAnonymousColumnsBlock())))
995 if ((prev && (!prev->isAnonymousBlock() || toRenderBlock(prev)->continuation() || toRenderBlock(prev)->beingDestroyed()))
996 || (next && (!next->isAnonymousBlock() || toRenderBlock(next)->continuation() || toRenderBlock(next)->beingDestroyed())))
1036 ASSERT(!inlineChildrenBlock->continuation());
2557 // 6. paint continuation outlines.
2659 RenderBoxModelObject* continuation = this->continuation();
2660 return continuation && continuation->isInline() ? toRenderInline(continuation) : 0;
2665 RenderBoxModelObject* currentContinuation = continuation();
2719 // Paint each continuation outline.
5758 continuation()->absoluteRects(rects,
5776 continuation()->absoluteQuads(quads);
5791 return isAnonymousBlockContinuation() ? continuation() : RenderBox::hoverAncestor();
5797 if (continuation())
5798 continuation()->updateDragState(dragOn);
5803 return isAnonymousBlockContinuation() ? continuation()->style() : style();
5821 // We are in the margins of block elements that are part of a continuation. In
5824 n = continuation()->node();
5928 // FIXME: This is wrong. The principal renderer may not be the continuation preceding this block.