| Index: third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| index a060aa6eb1e3914c3eaeaaefca2f4539b42486d0..27d5cbfc162700479ecc896dc053fa2dce4654d4 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/FilteredComputedStylePropertyMap.cpp
|
| @@ -79,11 +79,11 @@ bool FilteredComputedStylePropertyMap::has(const String& propertyName,
|
| Vector<String> FilteredComputedStylePropertyMap::getProperties() {
|
| Vector<String> result;
|
| for (const auto& nativeProperty : m_nativeProperties) {
|
| - result.append(getPropertyNameString(nativeProperty));
|
| + result.push_back(getPropertyNameString(nativeProperty));
|
| }
|
|
|
| for (const auto& customProperty : m_customProperties) {
|
| - result.append(customProperty);
|
| + result.push_back(customProperty);
|
| }
|
|
|
| return result;
|
|
|