| Index: third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| index 788e10e6f7cb21ece391c2ea39862c1e94dbfd4a..70a5f9b6323c3533dd135bc30f111b633e20634c 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| +++ b/third_party/WebKit/Source/core/css/cssom/StyleValueFactory.cpp
|
| @@ -52,7 +52,7 @@ CSSStyleValue* styleValueForProperty(CSSPropertyID propertyID,
|
|
|
| CSSStyleValueVector unsupportedCSSValue(const CSSValue& value) {
|
| CSSStyleValueVector styleValueVector;
|
| - styleValueVector.append(CSSUnsupportedStyleValue::create(value.cssText()));
|
| + styleValueVector.push_back(CSSUnsupportedStyleValue::create(value.cssText()));
|
| return styleValueVector;
|
| }
|
|
|
| @@ -64,7 +64,7 @@ CSSStyleValueVector StyleValueFactory::cssValueToStyleValueVector(
|
| CSSStyleValueVector styleValueVector;
|
| CSSStyleValue* styleValue = styleValueForProperty(propertyID, value);
|
| if (styleValue) {
|
| - styleValueVector.append(styleValue);
|
| + styleValueVector.push_back(styleValue);
|
| return styleValueVector;
|
| }
|
|
|
| @@ -79,7 +79,7 @@ CSSStyleValueVector StyleValueFactory::cssValueToStyleValueVector(
|
| if (!styleValue) {
|
| return unsupportedCSSValue(value);
|
| }
|
| - styleValueVector.append(styleValue);
|
| + styleValueVector.push_back(styleValue);
|
| }
|
| return styleValueVector;
|
| }
|
|
|