| Index: third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| diff --git a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| index c3b62213d13c71178250980bb196cd29bd50381c..ad98b50b40bca403c700cb825747836db6421e3c 100644
|
| --- a/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| +++ b/third_party/WebKit/Source/core/css/cssom/CSSUnparsedValue.h
|
| @@ -50,7 +50,7 @@ class CORE_EXPORT CSSUnparsedValue final
|
| private:
|
| static CSSUnparsedValue* fromString(String string) {
|
| HeapVector<StringOrCSSVariableReferenceValue> fragments;
|
| - fragments.append(StringOrCSSVariableReferenceValue::fromString(string));
|
| + fragments.push_back(StringOrCSSVariableReferenceValue::fromString(string));
|
| return create(fragments);
|
| }
|
|
|
|
|