Index: third_party/WebKit/Source/core/html/TextControlElement.cpp |
diff --git a/third_party/WebKit/Source/core/html/TextControlElement.cpp b/third_party/WebKit/Source/core/html/TextControlElement.cpp |
index 1b1bf9d33515b2c7cfc75b66b5dfb1207ae8cf5c..b4ad1c46f2651a80dbd5f4ff16b9e7e79814a56e 100644 |
--- a/third_party/WebKit/Source/core/html/TextControlElement.cpp |
+++ b/third_party/WebKit/Source/core/html/TextControlElement.cpp |
@@ -960,8 +960,8 @@ static Position findWordBoundary(const HTMLElement* innerEditor, |
const unsigned length = end - start; |
concatTexts.append(text->data(), start, length); |
- lengthList.append(length); |
- textList.append(text); |
+ lengthList.push_back(length); |
+ textList.push_back(text); |
} |
if (isEndNode) |