Index: Source/core/css/CSSImageSetValue.cpp |
diff --git a/Source/core/css/CSSImageSetValue.cpp b/Source/core/css/CSSImageSetValue.cpp |
index dbfec7f43a6e0f058c3348bd1dbdfdc1ad53e493..682f227cce25ee6300512fbabdf2a40cc16eb155 100644 |
--- a/Source/core/css/CSSImageSetValue.cpp |
+++ b/Source/core/css/CSSImageSetValue.cpp |
@@ -149,7 +149,7 @@ String CSSImageSetValue::customCSSText() const |
size_t i = 0; |
while (i < length) { |
if (i > 0) |
- result.append(", "); |
+ result.appendLiteral(", "); |
const CSSValue* imageValue = item(i); |
result.append(imageValue->cssText()); |
@@ -166,7 +166,7 @@ String CSSImageSetValue::customCSSText() const |
++i; |
} |
- result.append(")"); |
+ result.append(')'); |
return result.toString(); |
} |