| Index: third_party/WebKit/Source/core/editing/commands/ReplaceSelectionCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/ReplaceSelectionCommand.cpp b/third_party/WebKit/Source/core/editing/commands/ReplaceSelectionCommand.cpp
|
| index 3ec32c20dbe3f857bd7d8470f0e0515ccf86399e..c59b7d0c3f5f3f4fdab38629e7fae48b91f228fe 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/ReplaceSelectionCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/ReplaceSelectionCommand.cpp
|
| @@ -341,7 +341,7 @@ void ReplacementFragment::removeUnrenderedNodes(ContainerNode* holder) {
|
|
|
| for (Node& node : NodeTraversal::descendantsOf(*holder)) {
|
| if (!isNodeRendered(node) && !isTableStructureNode(&node))
|
| - unrendered.append(&node);
|
| + unrendered.push_back(&node);
|
| }
|
|
|
| for (auto& node : unrendered)
|
|
|