| Index: third_party/WebKit/Source/core/layout/line/InlineIterator.h
|
| diff --git a/third_party/WebKit/Source/core/layout/line/InlineIterator.h b/third_party/WebKit/Source/core/layout/line/InlineIterator.h
|
| index 4c17835d21acdf249a7d76a8923952e2fc263433..c38639827133f531a0287feb8fc8f2b14fdf357b 100644
|
| --- a/third_party/WebKit/Source/core/layout/line/InlineIterator.h
|
| +++ b/third_party/WebKit/Source/core/layout/line/InlineIterator.h
|
| @@ -661,8 +661,8 @@ static inline BidiRun* addPlaceholderRunForIsolatedInline(
|
| // FIXME: isolatedRuns() could be a hash of object->run and then we could
|
| // cheaply ASSERT here that we didn't create multiple objects for the same
|
| // inline.
|
| - resolver.isolatedRuns().append(BidiIsolatedRun(obj, pos, root, *isolatedRun,
|
| - resolver.context()->level()));
|
| + resolver.isolatedRuns().push_back(BidiIsolatedRun(
|
| + obj, pos, root, *isolatedRun, resolver.context()->level()));
|
| return isolatedRun;
|
| }
|
|
|
|
|