| Index: third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| index 96c212db6aa43f0a1c1dd1ad6eae1d05cb46cba7..7f90cf8f0f02b5ac4389ec5c3d26974b2f8198fb 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSCrossfadeValue.cpp
|
| @@ -133,11 +133,11 @@
|
| String CSSCrossfadeValue::customCSSText() const
|
| {
|
| StringBuilder result;
|
| - result.append("-webkit-cross-fade(");
|
| + result.appendLiteral("-webkit-cross-fade(");
|
| result.append(m_fromValue->cssText());
|
| - result.append(", ");
|
| + result.appendLiteral(", ");
|
| result.append(m_toValue->cssText());
|
| - result.append(", ");
|
| + result.appendLiteral(", ");
|
| result.append(m_percentageValue->cssText());
|
| result.append(')');
|
| return result.toString();
|
|
|