| Index: third_party/WebKit/Source/web/WebFrameSerializer.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFrameSerializer.cpp b/third_party/WebKit/Source/web/WebFrameSerializer.cpp
|
| index 5fdf086b987a4235d190e22fae7cf7de62f0db1f..38008c2c4c0aaf2d73079d4ed8dd7cb086ea4400 100644
|
| --- a/third_party/WebKit/Source/web/WebFrameSerializer.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFrameSerializer.cpp
|
| @@ -199,7 +199,7 @@ Vector<Attribute> MHTMLFrameSerializerDelegate::getCustomAttributes(
|
| if (element.isFormControlElement() &&
|
| !element.fastHasAttribute(HTMLNames::disabledAttr)) {
|
| Attribute disabledAttribute(HTMLNames::disabledAttr, "");
|
| - attributes.append(disabledAttribute);
|
| + attributes.push_back(disabledAttribute);
|
| }
|
|
|
| return attributes;
|
|
|