| Index: third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
|
| index 65a7596806309ea9cdc280bc915a13206f6a8a2d..35679f9e3e70ee046a2b455495c20a4f31ed2d46 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSTransformValue.cpp
|
| @@ -49,7 +49,7 @@ CSSTransformValue* CSSTransformValue::fromCSSValue(const CSSValue& cssValue) {
|
| CSSTransformComponent::fromCSSValue(*value);
|
| if (!component)
|
| return nullptr;
|
| - components.append(component);
|
| + components.push_back(component);
|
| }
|
| return CSSTransformValue::create(components);
|
| }
|
|
|