Index: Source/core/editing/InsertIntoTextNodeCommand.cpp |
diff --git a/Source/core/editing/InsertIntoTextNodeCommand.cpp b/Source/core/editing/InsertIntoTextNodeCommand.cpp |
index 5ea5447dd1d7d39d135ee16f9caaa4f7b548a4c1..e515313b555ba6bf37bb54bebe284ae37bc466a3 100644 |
--- a/Source/core/editing/InsertIntoTextNodeCommand.cpp |
+++ b/Source/core/editing/InsertIntoTextNodeCommand.cpp |
@@ -71,4 +71,10 @@ void InsertIntoTextNodeCommand::doUnapply() |
m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmediatlelyForEditing); |
} |
+void InsertIntoTextNodeCommand::trace(Visitor* visitor) |
+{ |
+ visitor->trace(m_node); |
+ SimpleEditCommand::trace(visitor); |
+} |
+ |
} // namespace WebCore |