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