| Index: Source/core/editing/AppendNodeCommand.cpp
|
| diff --git a/Source/core/editing/AppendNodeCommand.cpp b/Source/core/editing/AppendNodeCommand.cpp
|
| index 264b586bae3c8f439b306f5f0cc254e25237660b..75afcbd8ef02a8e1d8506ad53933ab08a1c8d489 100644
|
| --- a/Source/core/editing/AppendNodeCommand.cpp
|
| +++ b/Source/core/editing/AppendNodeCommand.cpp
|
| @@ -60,7 +60,7 @@ void AppendNodeCommand::doApply()
|
| if (!m_parent->rendererIsEditable() && m_parent->attached())
|
| return;
|
|
|
| - m_parent->appendChild(m_node.get(), IGNORE_EXCEPTION_STATE, AttachLazily);
|
| + m_parent->appendChild(m_node.get(), IGNORE_EXCEPTION, AttachLazily);
|
|
|
| if (AXObjectCache::accessibilityEnabled())
|
| sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextInserted);
|
| @@ -75,7 +75,7 @@ void AppendNodeCommand::doUnapply()
|
| if (AXObjectCache::accessibilityEnabled())
|
| sendAXTextChangedIgnoringLineBreaks(m_node.get(), AXObjectCache::AXTextDeleted);
|
|
|
| - m_node->remove(IGNORE_EXCEPTION_STATE);
|
| + m_node->remove(IGNORE_EXCEPTION);
|
| }
|
|
|
| #ifndef NDEBUG
|
|
|