| Index: Source/core/editing/EditorCommand.cpp
|
| diff --git a/Source/core/editing/EditorCommand.cpp b/Source/core/editing/EditorCommand.cpp
|
| index 645f7f4e9df639fb454d9ccbbda5445a040cd416..153e144b7d5c39534ba4bc7dd2105c0aae03f4e9 100644
|
| --- a/Source/core/editing/EditorCommand.cpp
|
| +++ b/Source/core/editing/EditorCommand.cpp
|
| @@ -200,7 +200,7 @@ static bool executeInsertNode(Frame* frame, PassRefPtr<Node> content)
|
| {
|
| RefPtr<DocumentFragment> fragment = DocumentFragment::create(frame->document());
|
| TrackExceptionState es;
|
| - fragment->appendChild(content, es);
|
| + fragment->appendChild(content, es, DeprecatedAttachNow);
|
| if (es.hadException())
|
| return false;
|
| return executeInsertFragment(frame, fragment.release());
|
|
|