| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 1a1cb9079ddfd5fd847b831f674572c88ddaf56e..38bd63b700ea8637540eda36d65b350c19312995 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -2452,7 +2452,7 @@ void Node::updateAncestorConnectedSubframeCountForInsertion() const
|
| PassRefPtr<NodeList> Node::getDestinationInsertionPoints()
|
| {
|
| document().updateDistributionForNodeIfNeeded(this);
|
| - Vector<InsertionPoint*, 8> insertionPoints;
|
| + WillBeHeapVector<RawPtrWillBeMember<InsertionPoint>, 8> insertionPoints;
|
| collectDestinationInsertionPoints(*this, insertionPoints);
|
| Vector<RefPtr<Node> > filteredInsertionPoints;
|
| for (size_t i = 0; i < insertionPoints.size(); ++i) {
|
|
|