| Index: third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp b/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| index d2247f48b95b02dbd6b86a75207df03f20405f8d..8ff01621b10cd144f2ef919e82d0f0dfb44ff317 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| @@ -43,9 +43,9 @@ String CSSSupportsRule::cssText() const
|
| {
|
| StringBuilder result;
|
|
|
| - result.appendLiteral("@supports ");
|
| + result.append("@supports ");
|
| result.append(conditionText());
|
| - result.appendLiteral(" {\n");
|
| + result.append(" {\n");
|
| appendCSSTextForItems(result);
|
| result.append('}');
|
|
|
|
|