Index: Source/core/dom/Node.cpp |
diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp |
index deb789d648f5c49cb255d46064bf1b09c6317e2b..89f80b54a0abb8e03fe2d50d433194f6fae29cd6 100644 |
--- a/Source/core/dom/Node.cpp |
+++ b/Source/core/dom/Node.cpp |
@@ -1564,7 +1564,7 @@ void Node::setTextContent(const String& text, ExceptionState& es) |
case ENTITY_NODE: |
case DOCUMENT_FRAGMENT_NODE: { |
RefPtr<ContainerNode> container = toContainerNode(this); |
- ChildListMutationScope mutation(this); |
+ ChildListMutationScope mutation(*this); |
container->removeChildren(); |
if (!text.isEmpty()) |
container->appendChild(document().createTextNode(text), es); |