| Index: third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp b/third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp
|
| index 17137babfb5af3e0e846826eb6da91b823a612ce..99183c7e2291aa831cc075cd97fb97d4ca1c53eb 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/RemoveCSSPropertyCommand.cpp
|
| @@ -53,8 +53,9 @@ void RemoveCSSPropertyCommand::doApply(EditingState*) {
|
| m_oldValue = style->getPropertyValue(m_property);
|
| m_important = style->propertyIsImportant(m_property);
|
|
|
| - // Mutate using the CSSOM wrapper so we get the same event behavior as a script.
|
| - // Setting to null string removes the property. We don't have internal version of removeProperty.
|
| + // Mutate using the CSSOM wrapper so we get the same event behavior as a
|
| + // script. Setting to null string removes the property. We don't have internal
|
| + // version of removeProperty.
|
| m_element->style()->setPropertyInternal(m_property, String(), String(), false,
|
| IGNORE_EXCEPTION);
|
| }
|
|
|