| Index: third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp b/third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp
|
| index 110d27bcc434d4221c7551ca69e8a1908c767c2d..77627b3807ad1b1505c01aba2403b7f8cc2c01b0 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/SlotAssignment.cpp
|
| @@ -170,7 +170,7 @@ void SlotAssignment::collectSlots() {
|
| m_slots.reserveCapacity(m_slotCount);
|
| for (HTMLSlotElement& slot :
|
| Traversal<HTMLSlotElement>::descendantsOf(*m_owner)) {
|
| - m_slots.append(&slot);
|
| + m_slots.push_back(&slot);
|
| }
|
| m_needsCollectSlots = false;
|
| DCHECK_EQ(m_slots.size(), m_slotCount);
|
|
|