| Index: Source/core/editing/SplitElementCommand.cpp
|
| diff --git a/Source/core/editing/SplitElementCommand.cpp b/Source/core/editing/SplitElementCommand.cpp
|
| index afc1942b2090e5c2217e469a0b3265132e860362..11ec640704ed3200e7a0b796325c58c20018db9a 100644
|
| --- a/Source/core/editing/SplitElementCommand.cpp
|
| +++ b/Source/core/editing/SplitElementCommand.cpp
|
| @@ -90,13 +90,13 @@ void SplitElementCommand::doUnapply()
|
|
|
| size_t size = children.size();
|
| for (size_t i = 0; i < size; ++i)
|
| - m_element2->insertBefore(children[i].get(), refChild.get(), IGNORE_EXCEPTION_STATE);
|
| + m_element2->insertBefore(children[i].get(), refChild.get(), IGNORE_EXCEPTION);
|
|
|
| // Recover the id attribute of the original element.
|
| if (m_element1->hasAttribute(HTMLNames::idAttr))
|
| m_element2->setAttribute(HTMLNames::idAttr, m_element1->getAttribute(HTMLNames::idAttr));
|
|
|
| - m_element1->remove(IGNORE_EXCEPTION_STATE);
|
| + m_element1->remove(IGNORE_EXCEPTION);
|
| }
|
|
|
| void SplitElementCommand::doReapply()
|
|
|