| Index: Source/core/editing/RemoveCSSPropertyCommand.cpp
|
| diff --git a/Source/core/editing/RemoveCSSPropertyCommand.cpp b/Source/core/editing/RemoveCSSPropertyCommand.cpp
|
| index 13c4389cbed0b9153210e20c71de3f4c0c400e9a..ebb6d0b9bf230d5359a70d8cb267bc6a3c6f03de 100644
|
| --- a/Source/core/editing/RemoveCSSPropertyCommand.cpp
|
| +++ b/Source/core/editing/RemoveCSSPropertyCommand.cpp
|
| @@ -55,12 +55,12 @@ void RemoveCSSPropertyCommand::doApply()
|
|
|
| // 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(), false, IGNORE_EXCEPTION_STATE);
|
| + m_element->style()->setPropertyInternal(m_property, String(), false, IGNORE_EXCEPTION);
|
| }
|
|
|
| void RemoveCSSPropertyCommand::doUnapply()
|
| {
|
| - m_element->style()->setPropertyInternal(m_property, m_oldValue, m_important, IGNORE_EXCEPTION_STATE);
|
| + m_element->style()->setPropertyInternal(m_property, m_oldValue, m_important, IGNORE_EXCEPTION);
|
| }
|
|
|
| #ifndef NDEBUG
|
|
|