Chromium Code Reviews| Index: Source/core/dom/shadow/ShadowRoot.cpp |
| diff --git a/Source/core/dom/shadow/ShadowRoot.cpp b/Source/core/dom/shadow/ShadowRoot.cpp |
| index fc01f8ee4fffeaf8fa59d3013b84204dd9ac5038..83df7d57a0ac95fe239537683a356d2a6f242638 100644 |
| --- a/Source/core/dom/shadow/ShadowRoot.cpp |
| +++ b/Source/core/dom/shadow/ShadowRoot.cpp |
| @@ -142,6 +142,12 @@ void ShadowRoot::recalcStyle(StyleChange change) |
| StyleResolver* styleResolver = document()->styleResolver(); |
| styleResolver->pushParentShadowRoot(this); |
| + // When we're set to lazyAttach we'll have a FullStyleChange and we'll need |
| + // to promote the change to a Force for all our descendants so they get a |
| + // recalc and will attach. |
| + if (styleChangeType() == FullStyleChange) |
|
ojan
2013/06/03 23:03:29
Did you mean to include this in this patch?
|
| + change = Force; |
| + |
| for (Node* child = firstChild(); child; child = child->nextSibling()) { |
| if (child->isElementNode()) |
| toElement(child)->recalcStyle(change); |