| Index: Source/core/css/CSSPropertySourceData.cpp
|
| diff --git a/Source/core/css/CSSPropertySourceData.cpp b/Source/core/css/CSSPropertySourceData.cpp
|
| index d1f1fbdad996d06c0ce5cdc1f2f61277e3805c34..9d832fd09bf31fc610316bb95d7cd0733b739aa6 100644
|
| --- a/Source/core/css/CSSPropertySourceData.cpp
|
| +++ b/Source/core/css/CSSPropertySourceData.cpp
|
| @@ -93,7 +93,7 @@ String CSSPropertySourceData::toString() const
|
|
|
| StringBuilder result;
|
| if (disabled)
|
| - result.append("/* ");
|
| + result.appendLiteral("/* ");
|
| result.append(name);
|
| result.appendLiteral(": ");
|
| result.append(value);
|
| @@ -101,7 +101,7 @@ String CSSPropertySourceData::toString() const
|
| result.appendLiteral(" !important");
|
| result.append(';');
|
| if (disabled)
|
| - result.append(" */");
|
| + result.appendLiteral(" */");
|
| return result.toString();
|
| }
|
|
|
|
|