| Index: Source/core/css/CSSComputedStyleDeclaration.cpp
|
| diff --git a/Source/core/css/CSSComputedStyleDeclaration.cpp b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| index 8bb6738cf88e12901f541671d79bb96c3262b692..918456d508824152816d7d0d079d4c8dd165a252 100644
|
| --- a/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| +++ b/Source/core/css/CSSComputedStyleDeclaration.cpp
|
| @@ -1161,7 +1161,7 @@ String CSSComputedStyleDeclaration::cssText() const
|
| if (i)
|
| result.append(' ');
|
| result.append(getPropertyName(properties[i]));
|
| - result.append(": ", 2);
|
| + result.appendLiteral(": ");
|
| result.append(getPropertyValue(properties[i]));
|
| result.append(';');
|
| }
|
|
|