| Index: third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.cpp b/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.cpp
|
| index 1c470e02411be25118b5135c1d47590aa9acadb0..5999ce1559e1c3843df68b08bac1c5f17b7d423f 100644
|
| --- a/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/commands/InsertIntoTextNodeCommand.cpp
|
| @@ -63,7 +63,6 @@ void InsertIntoTextNodeCommand::doApply(EditingState*) {
|
| }
|
|
|
| m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION_FOR_TESTING);
|
| - document().updateStyleAndLayout();
|
| }
|
|
|
| void InsertIntoTextNodeCommand::doUnapply() {
|
| @@ -71,7 +70,6 @@ void InsertIntoTextNodeCommand::doUnapply() {
|
| return;
|
|
|
| m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION_FOR_TESTING);
|
| - document().updateStyleAndLayout();
|
| }
|
|
|
| DEFINE_TRACE(InsertIntoTextNodeCommand) {
|
|
|