Index: third_party/WebKit/Source/core/dom/Element.cpp |
diff --git a/third_party/WebKit/Source/core/dom/Element.cpp b/third_party/WebKit/Source/core/dom/Element.cpp |
index 7e63fa94a7b5f73a46792a9112546b6cbefdce47..2ab1ccea1d5882180bccc1d3d33776748aa5fa3f 100644 |
--- a/third_party/WebKit/Source/core/dom/Element.cpp |
+++ b/third_party/WebKit/Source/core/dom/Element.cpp |
@@ -1895,16 +1895,21 @@ void Element::recalcStyle(StyleRecalcChange change, Text* nextTextSibling) { |
elementAnimations->setAnimationStyleChange(false); |
} |
} |
- if (parentComputedStyle()) |
+ if (parentComputedStyle()) { |
change = recalcOwnStyle(change, nextTextSibling); |
+ } else { |
+ // In case we don't perform recalcOwnStyle we will never clear the |
+ // NeedsReattachLayoutTree flag which is set on the creation of each |
+ // Node. Clear that here. |
+ clearNeedsReattachLayoutTree(); |
+ } |
clearNeedsStyleRecalc(); |
- clearNeedsReattachLayoutTree(); |
} |
- // If we reattached we don't need to recalc the style of our descendants |
- // anymore. |
- if ((change >= UpdatePseudoElements && change < Reattach) || |
- childNeedsStyleRecalc()) { |
+ // If we are going to reattach we don't need to recalc the style of |
+ // our descendants anymore. |
+ if (change < Reattach && |
+ (change >= UpdatePseudoElements || childNeedsStyleRecalc())) { |
SelectorFilterParentScope filterScope(*this); |
StyleSharingDepthScope sharingScope(*this); |
@@ -1913,8 +1918,14 @@ void Element::recalcStyle(StyleRecalcChange change, Text* nextTextSibling) { |
if (change > UpdatePseudoElements || childNeedsStyleRecalc()) { |
for (ShadowRoot* root = youngestShadowRoot(); root; |
root = root->olderShadowRoot()) { |
- if (root->shouldCallRecalcStyle(change)) |
+ if (root->shouldCallRecalcStyle(change)) { |
root->recalcStyle(change); |
+ } else { |
+ // In case we don't perform recalcStyle we will never clear the |
+ // NeedsReattachLayoutTree flag which is set on the creation of each |
+ // Node. Clear that here. |
+ root->clearNeedsReattachLayoutTree(); |
+ } |
} |
recalcDescendantStyles(change); |
} |
@@ -1930,7 +1941,6 @@ void Element::recalcStyle(StyleRecalcChange change, Text* nextTextSibling) { |
childNeedsStyleRecalc() ? Force : change); |
clearChildNeedsStyleRecalc(); |
- clearChildNeedsReattachLayoutTree(); |
} |
if (hasCustomStyleCallbacks()) |
@@ -1990,7 +2000,7 @@ StyleRecalcChange Element::recalcOwnStyle(StyleRecalcChange change, |
styleReattachData.nextTextSibling = nextTextSibling; |
document().addStyleReattachData(*this, styleReattachData); |
setNeedsReattachLayoutTree(); |
- return rebuildLayoutTree(); |
+ return Reattach; |
} |
DCHECK(oldStyle); |
@@ -2031,34 +2041,66 @@ StyleRecalcChange Element::recalcOwnStyle(StyleRecalcChange change, |
return localChange; |
} |
-StyleRecalcChange Element::rebuildLayoutTree() { |
+void Element::rebuildLayoutTree() { |
DCHECK(inActiveDocument()); |
+ DCHECK(!needsStyleRecalc()); |
+ DCHECK(parentNode()); |
+ |
StyleReattachData styleReattachData = document().getStyleReattachData(*this); |
AttachContext reattachContext; |
reattachContext.resolvedStyle = styleReattachData.computedStyle.get(); |
bool layoutObjectWillChange = needsAttach() || layoutObject(); |
- // We are calling Element::rebuildLayoutTree() from inside |
- // Element::recalcOwnStyle where we set the NeedsReattachLayoutTree |
- // flag - so needsReattachLayoutTree() should always be true. |
- DCHECK(parentNode()); |
- DCHECK(parentNode()->childNeedsReattachLayoutTree()); |
- DCHECK(needsReattachLayoutTree()); |
- reattachLayoutTree(reattachContext); |
- // Since needsReattachLayoutTree() is always true we go into |
- // reattachLayoutTree() which reattaches all the descendant |
- // sub-trees. At this point no child should need reattaching. |
+ if (needsReattachLayoutTree()) { |
+ reattachLayoutTree(reattachContext); |
+ } else if (childNeedsReattachLayoutTree()) { |
+ DCHECK(!needsReattachLayoutTree()); |
+ SelectorFilterParentScope filterScope(*this); |
+ StyleSharingDepthScope sharingScope(*this); |
+ reattachPseudoElementLayoutTree(PseudoIdBefore); |
+ rebuildShadowRootLayoutTree(); |
+ rebuildChildrenLayoutTrees(); |
+ reattachPseudoElementLayoutTree(PseudoIdAfter); |
+ reattachPseudoElementLayoutTree(PseudoIdBackdrop); |
+ reattachPseudoElementLayoutTree(PseudoIdFirstLetter); |
+ } |
+ DCHECK(!needsReattachLayoutTree()); |
DCHECK(!childNeedsReattachLayoutTree()); |
+ if (hasCustomStyleCallbacks()) |
+ didRebuildLayoutTree(); |
+ |
if (layoutObjectWillChange || layoutObject()) { |
// nextTextSibling is passed on to recalcStyle from recalcDescendantStyles |
// we can either traverse the current subtree from this node onwards |
// or store it. |
// The choice is between increased time and increased memory complexity. |
reattachWhitespaceSiblingsIfNeeded(styleReattachData.nextTextSibling); |
- return Reattach; |
} |
- return ReattachNoLayoutObject; |
+} |
+ |
+void Element::rebuildShadowRootLayoutTree() { |
+ DCHECK(!needsStyleRecalc()); |
+ DCHECK(!childNeedsStyleRecalc()); |
+ DCHECK(!needsReattachLayoutTree()); |
+ for (ShadowRoot* root = youngestShadowRoot(); root; |
+ root = root->olderShadowRoot()) { |
+ if (root->needsReattachLayoutTree() || root->childNeedsReattachLayoutTree()) |
+ root->rebuildLayoutTree(); |
+ } |
+} |
+ |
+void Element::reattachPseudoElementLayoutTree(PseudoId pseudoId) { |
+ DCHECK(!needsStyleRecalc()); |
+ DCHECK(!childNeedsStyleRecalc()); |
+ DCHECK(!needsReattachLayoutTree()); |
+ if (PseudoElement* element = pseudoElement(pseudoId)) { |
+ if (element->needsReattachLayoutTree() || |
+ element->childNeedsReattachLayoutTree()) |
+ element->rebuildLayoutTree(); |
+ } else { |
+ createPseudoElementIfNeeded(pseudoId); |
+ } |
} |
void Element::updateCallbackSelectors(const ComputedStyle* oldStyle, |
@@ -3732,6 +3774,10 @@ void Element::didRecalcStyle() { |
DCHECK(hasCustomStyleCallbacks()); |
} |
+void Element::didRebuildLayoutTree() { |
+ DCHECK(hasCustomStyleCallbacks()); |
+} |
+ |
PassRefPtr<ComputedStyle> Element::customStyleForLayoutObject() { |
DCHECK(hasCustomStyleCallbacks()); |
return nullptr; |