| Index: third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| index 82a86b986a43891975979e43d67c33e05f306e4c..b9c7e515ba57ece3155b52882e7321e3e393031c 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSegmentedFontFace.cpp
|
| @@ -185,7 +185,7 @@ void CSSSegmentedFontFace::match(const String& text,
|
| HeapVector<Member<FontFace>>& faces) const {
|
| for (const auto& fontFace : m_fontFaces) {
|
| if (fontFace->cssFontFace()->ranges()->intersectsWith(text))
|
| - faces.append(fontFace);
|
| + faces.push_back(fontFace);
|
| }
|
| }
|
|
|
|
|