| Index: Source/core/css/CSSCalculationValue.cpp
|
| diff --git a/Source/core/css/CSSCalculationValue.cpp b/Source/core/css/CSSCalculationValue.cpp
|
| index ee079d5423b75bf3b1db039ec2cdb777e66470b1..d87a391095934fc0463db83e5b9a357f190ff065 100644
|
| --- a/Source/core/css/CSSCalculationValue.cpp
|
| +++ b/Source/core/css/CSSCalculationValue.cpp
|
| @@ -146,7 +146,7 @@ static bool hasDoubleValue(CSSPrimitiveValue::UnitType type)
|
| static String buildCSSText(const String& expression)
|
| {
|
| StringBuilder result;
|
| - result.append("calc");
|
| + result.appendLiteral("calc");
|
| bool expressionHasSingleTerm = expression[0] != '(';
|
| if (expressionHasSingleTerm)
|
| result.append('(');
|
|
|