| Index: third_party/WebKit/Source/core/editing/serializers/Serialization.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/serializers/Serialization.cpp b/third_party/WebKit/Source/core/editing/serializers/Serialization.cpp
|
| index c91ae7830da91c647ce182dcd493d0556cfedf9c..c5d16388a126b1dcce635e01da7be270af75d289 100644
|
| --- a/third_party/WebKit/Source/core/editing/serializers/Serialization.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/serializers/Serialization.cpp
|
| @@ -107,7 +107,7 @@ static void completeURLs(DocumentFragment& fragment, const String& baseURL) {
|
| // AttributeCollection::iterator end = attributes.end();
|
| for (const auto& attribute : attributes) {
|
| if (element.isURLAttribute(attribute) && !attribute.value().isEmpty())
|
| - changes.append(AttributeChange(
|
| + changes.push_back(AttributeChange(
|
| &element, attribute.name(),
|
| KURL(parsedBaseURL, attribute.value()).getString()));
|
| }
|
|
|