| 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 8ff01621b10cd144f2ef919e82d0f0dfb44ff317..d2247f48b95b02dbd6b86a75207df03f20405f8d 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSSupportsRule.cpp
|
| @@ -43,9 +43,9 @@
|
| {
|
| StringBuilder result;
|
|
|
| - result.append("@supports ");
|
| + result.appendLiteral("@supports ");
|
| result.append(conditionText());
|
| - result.append(" {\n");
|
| + result.appendLiteral(" {\n");
|
| appendCSSTextForItems(result);
|
| result.append('}');
|
|
|
|
|