| Index: third_party/WebKit/Source/web/WebFormElement.cpp
|
| diff --git a/third_party/WebKit/Source/web/WebFormElement.cpp b/third_party/WebKit/Source/web/WebFormElement.cpp
|
| index 72e0e3824c3ddaef7ba3873c8ed1808034500c5a..e297aad129bf43234330c7d72de7a36ba31ecb36 100644
|
| --- a/third_party/WebKit/Source/web/WebFormElement.cpp
|
| +++ b/third_party/WebKit/Source/web/WebFormElement.cpp
|
| @@ -67,7 +67,7 @@ void WebFormElement::getFormControlElements(
|
| for (ListedElement::List::const_iterator it = listedElements.begin();
|
| it != listedElements.end(); ++it) {
|
| if ((*it)->isFormControlElement())
|
| - formControlElements.append(toHTMLFormControlElement(*it));
|
| + formControlElements.push_back(toHTMLFormControlElement(*it));
|
| }
|
| result.assign(formControlElements);
|
| }
|
|
|