| Index: third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
|
| diff --git a/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp b/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
|
| index 150bfa26462ebfff4f670b087ea45dea48440de7..aca2e19f769bf77b34e33ec2ca1ad17c165a2784 100644
|
| --- a/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
|
| +++ b/third_party/WebKit/Source/core/svg/SVGTextContentElement.cpp
|
| @@ -41,8 +41,8 @@ const SVGEnumerationStringEntries&
|
| getStaticStringEntries<SVGLengthAdjustType>() {
|
| DEFINE_STATIC_LOCAL(SVGEnumerationStringEntries, entries, ());
|
| if (entries.isEmpty()) {
|
| - entries.append(std::make_pair(SVGLengthAdjustSpacing, "spacing"));
|
| - entries.append(
|
| + entries.push_back(std::make_pair(SVGLengthAdjustSpacing, "spacing"));
|
| + entries.push_back(
|
| std::make_pair(SVGLengthAdjustSpacingAndGlyphs, "spacingAndGlyphs"));
|
| }
|
| return entries;
|
|
|