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

Unified Diff: third_party/WebKit/Source/core/css/CSSPageRule.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/CSSPageRule.cpp
diff --git a/third_party/WebKit/Source/core/css/CSSPageRule.cpp b/third_party/WebKit/Source/core/css/CSSPageRule.cpp
index fa99594d60368dc64c668ff74fe9638797d50829..1fc0c5b17f2a253a404fffd52afe00e1c5966c71 100644
--- a/third_party/WebKit/Source/core/css/CSSPageRule.cpp
+++ b/third_party/WebKit/Source/core/css/CSSPageRule.cpp
@@ -79,7 +79,7 @@ String CSSPageRule::cssText() const
String pageSelectors = selectorText();
result.append(pageSelectors);
if (!pageSelectors.isEmpty())
- result.append(" ");
+ result.append(' ');
result.append("{ ");
String decls = m_pageRule->properties().asText();
result.append(decls);

Powered by Google App Engine
This is Rietveld 408576698