| Index: third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp b/third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp
|
| index c726e40ca56d7bb79976d8fd057aa175636c3844..84b397d7264f8b1663dffad5b899e8de23f8aad1 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/line/AbstractInlineTextBox.cpp
|
| @@ -146,7 +146,7 @@ void AbstractInlineTextBox::wordBoundaries(
|
| while (pos >= 0 && pos < len) {
|
| int next = iterator->next();
|
| if (isWordTextBreak(iterator))
|
| - words.append(WordBoundaries(pos, next));
|
| + words.push_back(WordBoundaries(pos, next));
|
| pos = next;
|
| }
|
| }
|
|
|