| Index: Source/core/dom/ContainerNode.cpp
|
| diff --git a/Source/core/dom/ContainerNode.cpp b/Source/core/dom/ContainerNode.cpp
|
| index 33bf98dcb55afc95bc70f14b99aada9040d460f1..7dbc40fc4b168745e83c26dd37f894f44141c10a 100644
|
| --- a/Source/core/dom/ContainerNode.cpp
|
| +++ b/Source/core/dom/ContainerNode.cpp
|
| @@ -713,13 +713,13 @@ void ContainerNode::dispatchPostAttachCallbacks()
|
|
|
| void ContainerNode::attach(const AttachContext& context)
|
| {
|
| - attachChildren();
|
| + attachChildren(context);
|
| Node::attach(context);
|
| }
|
|
|
| void ContainerNode::detach(const AttachContext& context)
|
| {
|
| - detachChildren();
|
| + detachChildren(context);
|
| clearChildNeedsStyleRecalc();
|
| Node::detach(context);
|
| }
|
|
|