Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(62)

Unified Diff: third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp

Issue 2143483002: Use the single char overload of append() when possible. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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..f1401d66e0dbb2fb2677430027c5bc805ee580ec 100644
--- a/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp
+++ b/third_party/WebKit/Source/core/css/CSSNamespaceRule.cpp
@@ -26,7 +26,7 @@ String CSSNamespaceRule::cssText() const
result.append("@namespace ");
serializeIdentifier(prefix(), result);
if (!prefix().isEmpty())
- result.append(" ");
+ result.append(' ');
result.append("url(");
result.append(serializeString(namespaceURI()));
result.append(");");
« no previous file with comments | « third_party/WebKit/Source/core/css/CSSGridAutoRepeatValue.cpp ('k') | third_party/WebKit/Source/core/css/CSSPageRule.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698