| Index: third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| index b99c9c10c6d16710a3fd16e6b2dc084da85c0cd4..ce03ac552f2650ca0a6d08c619d51b39e6cd156c 100644
|
| --- a/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| +++ b/third_party/WebKit/Source/core/html/HTMLSlotElement.cpp
|
| @@ -186,14 +186,14 @@ AtomicString HTMLSlotElement::name() const
|
| return normalizeSlotName(fastGetAttribute(HTMLNames::nameAttr));
|
| }
|
|
|
| -void HTMLSlotElement::attach(const AttachContext& context)
|
| +void HTMLSlotElement::attachLayoutTree(const AttachContext& context)
|
| {
|
| for (auto& node : m_distributedNodes) {
|
| if (node->needsAttach())
|
| - node->attach(context);
|
| + node->attachLayoutTree(context);
|
| }
|
|
|
| - HTMLElement::attach(context);
|
| + HTMLElement::attachLayoutTree(context);
|
| }
|
|
|
| void HTMLSlotElement::detach(const AttachContext& context)
|
|
|