| Index: Source/core/editing/EditorCommand.cpp
|
| diff --git a/Source/core/editing/EditorCommand.cpp b/Source/core/editing/EditorCommand.cpp
|
| index 2ff4a57cb5cc7be542d3adc4a740e5bc6b523661..b32e2ff7cf3a5dfa2fe72efa7fc1014514e3d793 100644
|
| --- a/Source/core/editing/EditorCommand.cpp
|
| +++ b/Source/core/editing/EditorCommand.cpp
|
| @@ -139,7 +139,7 @@ static bool executeToggleStyleInList(Frame* frame, EditorCommandSource source, E
|
| return false;
|
|
|
| RefPtr<CSSValue> selectedCSSValue = selectionStyle->style()->getPropertyCSSValue(propertyID);
|
| - String newStyle = ASCIILiteral("none");
|
| + String newStyle("none");
|
| if (selectedCSSValue->isValueList()) {
|
| RefPtr<CSSValueList> selectedCSSValueList = toCSSValueList(selectedCSSValue.get());
|
| if (!selectedCSSValueList->removeAll(value))
|
|
|