| Index: third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp
|
| index 43ebb054c7cd7c8ee87ede7c0ac3102cf0340430..1e8baa6460ccca417cf9b05696339921d5cc6f8f 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/InsertionPoint.cpp
|
| @@ -293,7 +293,7 @@ void collectDestinationInsertionPoints(
|
| if (!insertionPoints)
|
| return;
|
| for (size_t i = 0; i < insertionPoints->size(); ++i)
|
| - results.append(insertionPoints->at(i).get());
|
| + results.push_back(insertionPoints->at(i).get());
|
| DCHECK_NE(current, insertionPoints->back().get());
|
| current = insertionPoints->back().get();
|
| }
|
|
|