| Index: Source/core/dom/Node.cpp
|
| diff --git a/Source/core/dom/Node.cpp b/Source/core/dom/Node.cpp
|
| index 6191bd292e652926e44c108c498e349e8117bf45..937d86f4dd2c26eccc98b75f84a85119df3948ab 100644
|
| --- a/Source/core/dom/Node.cpp
|
| +++ b/Source/core/dom/Node.cpp
|
| @@ -2218,8 +2218,8 @@ void Node::unregisterMutationObserver(MutationObserverRegistration* registration
|
| return;
|
|
|
| size_t index = registry->find(registration);
|
| - ASSERT(index != notFound);
|
| - if (index == notFound)
|
| + ASSERT(index != kNotFound);
|
| + if (index == kNotFound)
|
| return;
|
|
|
| // Deleting the registration may cause this node to be derefed, so we must make sure the Vector operation completes
|
|
|