Index: third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp |
diff --git a/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp b/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp |
index 5120de6608779c33db6dfcf51df7f0eaddbc1ace..61fa07b30e519f3763733f608651931d7ad54c89 100644 |
--- a/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp |
+++ b/third_party/WebKit/Source/core/editing/commands/EditorCommand.cpp |
@@ -222,7 +222,7 @@ static bool executeToggleStyleInList(LocalFrame& frame, EditorCommandSource sour |
String newStyle("none"); |
if (selectedCSSValue->isValueList()) { |
CSSValueList* selectedCSSValueList = toCSSValueList(selectedCSSValue); |
- if (!selectedCSSValueList->removeAll(value)) |
+ if (!selectedCSSValueList->removeAll(*value)) |
selectedCSSValueList->append(value); |
if (selectedCSSValueList->length()) |
newStyle = selectedCSSValueList->cssText(); |