| /* |
| * Copyright (C) 2009, 2010 Apple Inc. All rights reserved. |
| * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| * |
| * Redistribution and use in source and binary forms, with or without |
| * modification, are permitted provided that the following conditions |
| * are met: |
| * 1. Redistributions of source code must retain the above copyright |
| * notice, this list of conditions and the following disclaimer. |
| * 2. Redistributions in binary form must reproduce the above copyright |
| * notice, this list of conditions and the following disclaimer in the |
| * documentation and/or other materials provided with the distribution. |
| * |
| * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY |
| * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
| * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR |
| * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, |
| * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR |
| * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY |
| * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| */ |
| |
| #include "config.h" |
| #include "RenderObjectChildList.h" |
| |
| #include "AXObjectCache.h" |
| #include "ContentData.h" |
| #include "RenderBlock.h" |
| #include "RenderCounter.h" |
| #include "RenderLayer.h" |
| #include "RenderListItem.h" |
| #include "RenderNamedFlowThread.h" |
| #include "RenderRegion.h" |
| #include "RenderStyle.h" |
| #include "RenderView.h" |
| |
| namespace WebCore { |
| |
| bool RenderObjectChildList::s_enableUpdateBeforeAfterContent = true; |
| |
| void RenderObjectChildList::destroyLeftoverChildren() |
| { |
| while (firstChild()) { |
| if (firstChild()->isListMarker() || (firstChild()->style()->styleType() == FIRST_LETTER && !firstChild()->isText())) |
| firstChild()->remove(); // List markers are owned by their enclosing list and so don't get destroyed by this container. Similarly, first letters are destroyed by their remaining text fragment. |
| else if (firstChild()->isRunIn() && firstChild()->node()) { |
| firstChild()->node()->setNeedsStyleRecalc(); |
| firstChild()->destroy(); |
| } else { |
| // Destroy any anonymous children remaining in the render tree, as well as implicit (shadow) DOM elements like those used in the engine-based text fields. |
| firstChild()->destroy(); |
| } |
| } |
| } |
| |
| RenderObject* RenderObjectChildList::removeChildNode(RenderObject* owner, RenderObject* oldChild, bool notifyRenderer) |
| { |
| ASSERT(oldChild->parent() == owner); |
| |
| if (oldChild->isFloatingOrOutOfFlowPositioned()) |
| toRenderBox(oldChild)->removeFloatingOrPositionedChildFromBlockLists(); |
| |
| // So that we'll get the appropriate dirty bit set (either that a normal flow child got yanked or |
| // that a positioned child got yanked). |
| if (!owner->documentBeingDestroyed() && notifyRenderer && oldChild->everHadLayout()) { |
| oldChild->setNeedsLayoutAndPrefWidthsRecalc(); |
| // We only repaint |oldChild| if we have a RenderLayer as its visual overflow may not be tracked by its parent. |
| if (oldChild->hasLayer()) |
| oldChild->repaint(); |
| } |
| |
| // If we have a line box wrapper, delete it. |
| if (oldChild->isBox()) |
| toRenderBox(oldChild)->deleteLineBoxWrapper(); |
| |
| // If oldChild is the start or end of the selection, then clear the selection to |
| // avoid problems of invalid pointers. |
| // FIXME: The FrameSelection should be responsible for this when it |
| // is notified of DOM mutations. |
| if (!owner->documentBeingDestroyed() && oldChild->isSelectionBorder()) |
| owner->view()->clearSelection(); |
| |
| if (!owner->documentBeingDestroyed() && notifyRenderer) |
| oldChild->willBeRemovedFromTree(); |
| |
| // WARNING: There should be no code running between willBeRemovedFromTree and the actual removal below. |
| // This is needed to avoid race conditions where willBeRemovedFromTree would dirty the tree's structure |
| // and the code running here would force an untimely rebuilding, leaving |oldChild| dangling. |
| |
| if (oldChild->previousSibling()) |
| oldChild->previousSibling()->setNextSibling(oldChild->nextSibling()); |
| if (oldChild->nextSibling()) |
| oldChild->nextSibling()->setPreviousSibling(oldChild->previousSibling()); |
| |
| if (firstChild() == oldChild) |
| setFirstChild(oldChild->nextSibling()); |
| if (lastChild() == oldChild) |
| setLastChild(oldChild->previousSibling()); |
| |
| oldChild->setPreviousSibling(0); |
| oldChild->setNextSibling(0); |
| oldChild->setParent(0); |
| |
| // rendererRemovedFromTree walks the whole subtree. We can improve performance |
| // by skipping this step when destroying the entire tree. |
| if (!owner->documentBeingDestroyed()) { |
| RenderCounter::rendererRemovedFromTree(oldChild); |
| } |
| |
| if (AXObjectCache::accessibilityEnabled()) |
| owner->document()->axObjectCache()->childrenChanged(owner); |
| |
| return oldChild; |
| } |
| |
| void RenderObjectChildList::appendChildNode(RenderObject* owner, RenderObject* newChild, bool notifyRenderer) |
| { |
| ASSERT(newChild->parent() == 0); |
| ASSERT(!owner->isBlockFlow() || (!newChild->isTableSection() && !newChild->isTableRow() && !newChild->isTableCell())); |
| |
| newChild->setParent(owner); |
| RenderObject* lChild = lastChild(); |
| |
| if (lChild) { |
| newChild->setPreviousSibling(lChild); |
| lChild->setNextSibling(newChild); |
| } else |
| setFirstChild(newChild); |
| |
| setLastChild(newChild); |
| |
| if (!owner->documentBeingDestroyed() && notifyRenderer) |
| newChild->insertedIntoTree(); |
| |
| if (!owner->documentBeingDestroyed()) { |
| RenderCounter::rendererSubtreeAttached(newChild); |
| } |
| newChild->setNeedsLayoutAndPrefWidthsRecalc(); // Goes up the containing block hierarchy. |
| if (!owner->normalChildNeedsLayout()) |
| owner->setChildNeedsLayout(true); // We may supply the static position for an absolute positioned child. |
| |
| if (AXObjectCache::accessibilityEnabled()) |
| owner->document()->axObjectCache()->childrenChanged(owner); |
| } |
| |
| void RenderObjectChildList::insertChildNode(RenderObject* owner, RenderObject* child, RenderObject* beforeChild, bool notifyRenderer) |
| { |
| if (!beforeChild) { |
| appendChildNode(owner, child, notifyRenderer); |
| return; |
| } |
| |
| ASSERT(!child->parent()); |
| while (beforeChild->parent() != owner && beforeChild->parent()->isAnonymousBlock()) |
| beforeChild = beforeChild->parent(); |
| ASSERT(beforeChild->parent() == owner); |
| |
| ASSERT(!owner->isBlockFlow() || (!child->isTableSection() && !child->isTableRow() && !child->isTableCell())); |
| |
| if (beforeChild == firstChild()) |
| setFirstChild(child); |
| |
| RenderObject* prev = beforeChild->previousSibling(); |
| child->setNextSibling(beforeChild); |
| beforeChild->setPreviousSibling(child); |
| if (prev) |
| prev->setNextSibling(child); |
| child->setPreviousSibling(prev); |
| |
| child->setParent(owner); |
| |
| if (!owner->documentBeingDestroyed() && notifyRenderer) |
| child->insertedIntoTree(); |
| |
| if (!owner->documentBeingDestroyed()) { |
| RenderCounter::rendererSubtreeAttached(child); |
| } |
| child->setNeedsLayoutAndPrefWidthsRecalc(); |
| if (!owner->normalChildNeedsLayout()) |
| owner->setChildNeedsLayout(true); // We may supply the static position for an absolute positioned child. |
| |
| if (AXObjectCache::accessibilityEnabled()) |
| owner->document()->axObjectCache()->childrenChanged(owner); |
| } |
| |
| static RenderObject* findBeforeAfterParent(RenderObject* object) |
| { |
| // Only table parts and flex-boxes need to search for the :before or :after parent |
| // FIXME: We could likely get away without this check and always look for the right parent. |
| if (!(object->isTable() || object->isTableSection() || object->isTableRow() || object->isFlexibleBoxIncludingDeprecated())) |
| return object; |
| |
| // If there is a :first-letter style applied on the :before or :after content, |
| // then we want the parent of the first-letter block |
| RenderObject* beforeAfterParent = object; |
| while (beforeAfterParent && !(beforeAfterParent->isText() || beforeAfterParent->isImage()) |
| && (beforeAfterParent->style()->styleType() != FIRST_LETTER)) |
| beforeAfterParent = beforeAfterParent->firstChild(); |
| |
| return beforeAfterParent ? beforeAfterParent->parent() : 0; |
| } |
| |
| RenderObject* RenderObjectChildList::beforePseudoElementRenderer(const RenderObject* owner) const |
| { |
| // An anonymous (generated) inline run-in that has PseudoId BEFORE must come from a grandparent. |
| // Therefore we should skip these generated run-ins when checking our immediate children. |
| // If we don't find our :before child immediately, then we should check if we own a |
| // generated inline run-in in the next level of children. |
| RenderObject* first = const_cast<RenderObject*>(owner); |
| do { |
| first = first->firstChild(); |
| // Skip list markers and generated run-ins. |
| while (first && (first->isListMarker() || (first->isRenderInline() && first->isRunIn()))) |
| first = first->nextInPreOrderAfterChildren(owner); |
| } while (first && first->isAnonymous() && first->style()->styleType() == NOPSEUDO); |
| |
| if (!first) |
| return 0; |
| |
| if (first->isBeforeContent()) |
| return first; |
| |
| // Check for a possible generated run-in, using run-in positioning rules. |
| first = owner->firstChild(); |
| if (!first->isRenderBlock()) |
| return 0; |
| |
| first = first->firstChild(); |
| // We still need to skip any list markers that could exist before the run-in. |
| while (first && first->isListMarker()) |
| first = first->nextSibling(); |
| if (first && first->isBeforeContent() && first->isRenderInline() && first->isRunIn()) |
| return first; |
| |
| return 0; |
| } |
| |
| RenderObject* RenderObjectChildList::afterPseudoElementRenderer(const RenderObject* owner) const |
| { |
| RenderObject* last = const_cast<RenderObject*>(owner); |
| do { |
| last = last->lastChild(); |
| } while (last && last->isAnonymous() && last->style()->styleType() == NOPSEUDO && !last->isListMarker()); |
| if (last && !last->isAfterContent()) |
| return 0; |
| return last; |
| } |
| |
| void RenderObjectChildList::updateBeforeAfterStyle(RenderObject* child, PseudoId type, RenderStyle* pseudoElementStyle) |
| { |
| if (!child || child->style()->styleType() != type) |
| return; |
| |
| // We have generated content present still. We want to walk this content and update our |
| // style information with the new pseudo-element style. |
| child->setStyle(pseudoElementStyle); |
| |
| RenderObject* beforeAfterParent = findBeforeAfterParent(child); |
| if (!beforeAfterParent) |
| return; |
| |
| // When beforeAfterParent is not equal to child (e.g. in tables), |
| // we need to create new styles inheriting from pseudoElementStyle |
| // on all the intermediate parents (leaving their display same). |
| if (beforeAfterParent != child) { |
| RenderObject* curr = beforeAfterParent; |
| while (curr && curr != child) { |
| ASSERT(curr->isAnonymous()); |
| RefPtr<RenderStyle> newStyle = RenderStyle::create(); |
| newStyle->inheritFrom(pseudoElementStyle); |
| newStyle->setDisplay(curr->style()->display()); |
| newStyle->setStyleType(curr->style()->styleType()); |
| curr->setStyle(newStyle); |
| curr = curr->parent(); |
| } |
| } |
| |
| // Note that if we ever support additional types of generated content (which should be way off |
| // in the future), this code will need to be patched. |
| for (RenderObject* genChild = beforeAfterParent->firstChild(); genChild; genChild = genChild->nextSibling()) { |
| if (genChild->isText()) |
| // Generated text content is a child whose style also needs to be set to the pseudo-element style. |
| genChild->setStyle(pseudoElementStyle); |
| else if (genChild->isImage()) { |
| // Images get an empty style that inherits from the pseudo. |
| RefPtr<RenderStyle> style = RenderStyle::create(); |
| style->inheritFrom(pseudoElementStyle); |
| genChild->setStyle(style.release()); |
| } else { |
| // RenderListItem may insert a list marker here. We do not need to care about this case. |
| // Otherwise, genChild must be a first-letter container. updateFirstLetter() will take care of it. |
| ASSERT(genChild->isListMarker() || genChild->style()->styleType() == FIRST_LETTER); |
| } |
| } |
| } |
| |
| static RenderObject* ensureBeforeAfterContainer(RenderObject* owner, PseudoId type, RenderStyle* pseudoElementStyle, Node* generatingNode, RenderObject* insertBefore) |
| { |
| // Make a generated box that might be any display type now that we are able to drill down into children |
| // to find the original content properly. |
| RenderObject* generatedContentContainer = RenderObject::createObject(owner->document(), pseudoElementStyle); |
| ASSERT(generatingNode); // The styled object cannot be anonymous or else it could not have ':before' or ':after' pseudo elements. |
| generatedContentContainer->setNode(generatingNode); // This allows access to the generatingNode. |
| generatedContentContainer->setStyle(pseudoElementStyle); |
| if (!owner->isChildAllowed(generatedContentContainer, pseudoElementStyle)) { |
| // The generated content container is not allowed here -> abort. |
| generatedContentContainer->destroy(); |
| return 0; |
| } |
| |
| // When we don't have a first child and are part of a continuation chain, |
| // insertBefore is incorrectly set to zero above, which causes the :before |
| // child to end up at the end of continuation chain. |
| // See https://bugs.webkit.org/show_bug.cgi?id=78380. |
| if (!insertBefore && type == BEFORE && owner->virtualContinuation()) |
| owner->addChildIgnoringContinuation(generatedContentContainer, 0); |
| else |
| owner->addChild(generatedContentContainer, insertBefore); |
| |
| return generatedContentContainer; |
| } |
| |
| void RenderObjectChildList::updateBeforeAfterContent(RenderObject* owner, PseudoId type, const RenderObject* styledObject) |
| { |
| // Double check that the document did in fact use generated content rules. Otherwise we should not have been called. |
| ASSERT(owner->document()->styleSheetCollection()->usesBeforeAfterRules()); |
| |
| // In CSS2, before/after pseudo-content cannot nest. Check this first. |
| if (owner->style()->styleType() == BEFORE || owner->style()->styleType() == AFTER) |
| return; |
| if (!s_enableUpdateBeforeAfterContent) |
| return; |
| |
| if (!styledObject) |
| styledObject = owner; |
| |
| RenderStyle* pseudoElementStyle = styledObject->getCachedPseudoStyle(type); |
| RenderObject* child; |
| switch (type) { |
| case BEFORE: |
| child = beforePseudoElementRenderer(owner); |
| break; |
| case AFTER: |
| child = afterPseudoElementRenderer(owner); |
| break; |
| default: |
| ASSERT_NOT_REACHED(); |
| return; |
| } |
| |
| // Whether or not we currently have generated content attached. |
| bool oldContentPresent = child; |
| |
| // Whether or not we now want generated content. |
| bool newContentWanted = pseudoElementStyle && pseudoElementStyle->display() != NONE; |
| |
| // For <q><p/></q>, if this object is the inline continuation of the <q>, we only want to generate |
| // :after content and not :before content. |
| if (newContentWanted && type == BEFORE && owner->isElementContinuation()) |
| newContentWanted = false; |
| |
| // Similarly, if we're the beginning of a <q>, and there's an inline continuation for our object, |
| // then we don't generate the :after content. |
| if (newContentWanted && type == AFTER && owner->virtualContinuation()) |
| newContentWanted = false; |
| |
| // If we don't want generated content any longer, or if we have generated content, but it's no longer |
| // identical to the new content data we want to build render objects for, then we nuke all |
| // of the old generated content. |
| if (oldContentPresent && (!newContentWanted || Node::diff(child->style(), pseudoElementStyle, owner->document()) == Node::Detach)) { |
| // Nuke the child. |
| if (child->style()->styleType() == type) { |
| oldContentPresent = false; |
| child->destroy(); |
| child = (type == BEFORE) ? owner->virtualChildren()->firstChild() : owner->virtualChildren()->lastChild(); |
| } |
| } |
| |
| // If we have no pseudo-element style or if the pseudo-element style's display type is NONE, then we |
| // have no generated content and can now return. |
| if (!newContentWanted) |
| return; |
| |
| if (owner->isRenderInline() && !pseudoElementStyle->isDisplayInlineType() && !pseudoElementStyle->isFloating() && |
| !pseudoElementStyle->hasOutOfFlowPosition()) |
| // According to the CSS2 spec (the end of section 12.1), the only allowed |
| // display values for the pseudo style are NONE and INLINE for inline flows. |
| // FIXME: CSS2.1 lifted this restriction, but block display types will crash. |
| // For now we at least relax the restriction to allow all inline types like inline-block |
| // and inline-table. |
| pseudoElementStyle->setDisplay(INLINE); |
| |
| if (oldContentPresent) { |
| updateBeforeAfterStyle(child, type, pseudoElementStyle); |
| return; // We've updated the generated content. That's all we needed to do. |
| } |
| |
| RenderObject* insertBefore = (type == BEFORE) ? owner->virtualChildren()->firstChild() : 0; |
| if (insertBefore && insertBefore->isAnonymousBlock() && insertBefore->childrenInline() && !insertBefore->isEmpty()) { |
| // We are going to add the "before" element. We have to check whether the "insertBefore" element |
| // is an anonymous block with inline children. If it is, then we should insert the "before" element |
| // before the first inline child of the anonymous block, otherwise we will end up with the "before" |
| // element in a different block. We do this only when the anonymous block has children, otherwise |
| // we end up with the before element in a wrong block. |
| insertBefore = insertBefore->firstChild(); |
| } |
| |
| // Nothing goes before the intruded run-in, not even generated content. |
| if (insertBefore && insertBefore->isRunIn() && owner->isRenderBlock() |
| && toRenderBlock(owner)->runInIsPlacedIntoSiblingBlock(insertBefore)) |
| insertBefore = insertBefore->nextSibling(); |
| |
| // Generated content consists of a single container that houses multiple children (specified |
| // by the content property). This generated content container gets the pseudo-element style set on it. |
| // For pseudo-elements that are regions, the container is the RenderRegion. |
| RenderObject* generatedContentContainer = 0; |
| |
| if (!pseudoElementStyle->regionThread().isEmpty()) |
| generatedContentContainer = ensureBeforeAfterContainer(owner, type, pseudoElementStyle, styledObject->node(), insertBefore); |
| else { |
| // Walk our list of generated content and create render objects for each. |
| for (const ContentData* content = pseudoElementStyle->contentData(); content; content = content->next()) { |
| RenderObject* renderer = content->createRenderer(owner->document(), pseudoElementStyle); |
| |
| if (!generatedContentContainer) { |
| generatedContentContainer = ensureBeforeAfterContainer(owner, type, pseudoElementStyle, styledObject->node(), insertBefore); |
| if (!generatedContentContainer) { |
| renderer->destroy(); |
| return; |
| } |
| } |
| if (generatedContentContainer->isChildAllowed(renderer, pseudoElementStyle)) |
| generatedContentContainer->addChild(renderer); |
| else |
| renderer->destroy(); |
| } |
| } |
| |
| if (!generatedContentContainer) |
| return; |
| |
| // Handle placement of run-ins. We do the run-in placement at the end since generatedContentContainer can get destroyed. |
| RenderObject* generatedContentContainerImmediateParent = generatedContentContainer->parent(); |
| if (generatedContentContainerImmediateParent->isRenderBlock()) |
| toRenderBlock(generatedContentContainerImmediateParent)->placeRunInIfNeeded(generatedContentContainer, PlaceGeneratedRunIn); |
| } |
| |
| } // namespace WebCore |