| Index: Source/core/editing/SplitTextNodeCommand.cpp
|
| diff --git a/Source/core/editing/SplitTextNodeCommand.cpp b/Source/core/editing/SplitTextNodeCommand.cpp
|
| index 723cf712f8bbcba59181469539730c2074d915ce..0d691cc14e5251820b8f98c7f1bbbadd2eaaafe0 100644
|
| --- a/Source/core/editing/SplitTextNodeCommand.cpp
|
| +++ b/Source/core/editing/SplitTextNodeCommand.cpp
|
| @@ -97,7 +97,7 @@ void SplitTextNodeCommand::doReapply()
|
| void SplitTextNodeCommand::insertText1AndTrimText2()
|
| {
|
| TrackExceptionState es;
|
| - m_text2->parentNode()->insertBefore(m_text1.get(), m_text2.get(), es);
|
| + m_text2->parentNode()->insertBefore(m_text1.get(), m_text2.get(), es, DeprecatedAttachNow);
|
| if (es.hadException())
|
| return;
|
| m_text2->deleteData(0, m_offset, es);
|
|
|