Index: third_party/WebKit/Source/core/css/CSSSelectorList.cpp |
diff --git a/third_party/WebKit/Source/core/css/CSSSelectorList.cpp b/third_party/WebKit/Source/core/css/CSSSelectorList.cpp |
index 31269cdb3e83be716f4869730f534a784c9f6795..541104dab0c342f5b8dd0bfb1bb2d838842860f0 100644 |
--- a/third_party/WebKit/Source/core/css/CSSSelectorList.cpp |
+++ b/third_party/WebKit/Source/core/css/CSSSelectorList.cpp |
@@ -116,7 +116,7 @@ String CSSSelectorList::selectorsText() const |
for (const CSSSelector* s = first(); s; s = next(*s)) { |
if (s != first()) |
- result.appendLiteral(", "); |
+ result.append(", "); |
result.append(s->selectorText()); |
} |