Index: third_party/WebKit/Source/core/css/CSSCounterValue.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSCounterValue.cpp b/third_party/WebKit/Source/core/css/CSSCounterValue.cpp |
index 07fc304628f53dc15dbbf7638c33002b477dca40..877185dd0c816051135989effa04702983ee5025 100644 |
--- a/third_party/WebKit/Source/core/css/CSSCounterValue.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSCounterValue.cpp |
@@ -13,18 +13,18 @@ String CSSCounterValue::customCSSText() const |
{ |
StringBuilder result; |
if (separator().isEmpty()) |
- result.appendLiteral("counter("); |
+ result.append("counter("); |
else |
- result.appendLiteral("counters("); |
+ result.append("counters("); |
result.append(identifier()); |
if (!separator().isEmpty()) { |
- result.appendLiteral(", "); |
+ result.append(", "); |
result.append(m_separator->cssText()); |
} |
bool isDefaultListStyle = listStyle() == CSSValueDecimal; |
if (!isDefaultListStyle) { |
- result.appendLiteral(", "); |
+ result.append(", "); |
result.append(m_listStyle->cssText()); |
} |
result.append(')'); |