Index: third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp b/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp |
index 8b626625e3bbc3dea43a510804327f7f5a6ced5d..220d7eac182b9c9c8b1f6a49baec05b5948104d0 100644 |
--- a/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp |
@@ -23,13 +23,13 @@ CSSNamespaceRule::~CSSNamespaceRule() |
String CSSNamespaceRule::cssText() const |
{ |
StringBuilder result; |
- result.appendLiteral("@namespace "); |
+ result.append("@namespace "); |
serializeIdentifier(prefix(), result); |
if (!prefix().isEmpty()) |
- result.appendLiteral(" "); |
- result.appendLiteral("url("); |
+ result.append(" "); |
+ result.append("url("); |
result.append(serializeString(namespaceURI())); |
- result.appendLiteral(");"); |
+ result.append(");"); |
return result.toString(); |
} |