| Index: Source/core/dom/shadow/ShadowRoot.cpp
|
| diff --git a/Source/core/dom/shadow/ShadowRoot.cpp b/Source/core/dom/shadow/ShadowRoot.cpp
|
| index d409799d1d8ce9af52521dc022ee2fa2afe7be5a..aa405fca3afd843bb32fcfe8cf5e54b7c051c654 100644
|
| --- a/Source/core/dom/shadow/ShadowRoot.cpp
|
| +++ b/Source/core/dom/shadow/ShadowRoot.cpp
|
| @@ -198,11 +198,11 @@ void ShadowRoot::setResetStyleInheritance(bool value)
|
| setNeedsStyleRecalc();
|
| }
|
|
|
| -void ShadowRoot::attach()
|
| +void ShadowRoot::attach(const AttachContext& context)
|
| {
|
| StyleResolver* styleResolver = document()->styleResolver();
|
| styleResolver->pushParentShadowRoot(this);
|
| - DocumentFragment::attach();
|
| + DocumentFragment::attach(context);
|
| styleResolver->popParentShadowRoot(this);
|
| }
|
|
|
|
|