| Index: third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp
|
| index d3dc33ec0b04a72aba8f186a6fc559f576e7f08a..e915e92425bdbd6d7a55322d29fd3f551491fef6 100644
|
| --- a/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/custom/CustomElementUpgradeSorter.cpp
|
| @@ -66,7 +66,7 @@ void CustomElementUpgradeSorter::visit(HeapVector<Member<Element>>* result,
|
| if (it == children.end())
|
| return;
|
| if (it->get()->isElementNode() && m_elements->contains(toElement(*it)))
|
| - result->append(toElement(*it));
|
| + result->push_back(toElement(*it));
|
| sorted(result, *it);
|
| children.remove(it);
|
| }
|
|
|