| Index: third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
|
| diff --git a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
|
| index 2a631b34d1d62fb4df84878fdb4234df67df8821..7762728502929912e8498dde64eb7fcc67a4363c 100644
|
| --- a/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
|
| +++ b/third_party/WebKit/Source/build/scripts/templates/CSSOMKeywords.cpp.tmpl
|
| @@ -21,7 +21,7 @@ KeywordTable createKeywordTable() {
|
| {
|
| Vector<CSSValueID> {{property.lower_camel_name}}Keywords;
|
| {% for keywordValueID in property.keywordIDs %}
|
| - {{property.lower_camel_name}}Keywords.append({{keywordValueID}});
|
| + {{property.lower_camel_name}}Keywords.push_back({{keywordValueID}});
|
| {% endfor %}
|
| table.set({{property_id}}, {{property.lower_camel_name}}Keywords);
|
| }
|
|
|