| Index: third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| index 10119b93c457f564d4f171a0ca185c30e8d66811..8a5ada9646c962d9cbf01eec95d5af61b2557f4a 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/ComputedStylePropertyMap.cpp
|
| @@ -32,7 +32,7 @@ CSSStyleValueVector ComputedStylePropertyMap::getAllInternal(
|
| Vector<String> ComputedStylePropertyMap::getProperties() {
|
| Vector<String> result;
|
| for (unsigned i = 0; i < m_computedStyleDeclaration->length(); i++) {
|
| - result.append(m_computedStyleDeclaration->item(i));
|
| + result.push_back(m_computedStyleDeclaration->item(i));
|
| }
|
| return result;
|
| }
|
|
|