| Index: third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| diff --git a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| index fad2a8a0642d040e088ab104eaa8a8e0aeb3a67a..835e03e3aaaba6149be358deb6f62dd29e959dca 100644
|
| --- a/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| +++ b/third_party/WebKit/Source/core/dom/shadow/ShadowRoot.cpp
|
| @@ -274,7 +274,7 @@ ShadowRoot::descendantInsertionPoints() {
|
| HeapVector<Member<InsertionPoint>> insertionPoints;
|
| for (InsertionPoint& insertionPoint :
|
| Traversal<InsertionPoint>::descendantsOf(*this))
|
| - insertionPoints.append(&insertionPoint);
|
| + insertionPoints.push_back(&insertionPoint);
|
|
|
| ensureShadowRootRareDataV0().setDescendantInsertionPoints(insertionPoints);
|
|
|
|
|