| Index: Source/core/layout/LayoutObjectChildList.cpp
|
| diff --git a/Source/core/layout/LayoutObjectChildList.cpp b/Source/core/layout/LayoutObjectChildList.cpp
|
| index 3079b8d9a851f5b624743a3101dbc5a12c0cc30a..18d49abee87628a968fb09f1e599c7435c3af2df 100644
|
| --- a/Source/core/layout/LayoutObjectChildList.cpp
|
| +++ b/Source/core/layout/LayoutObjectChildList.cpp
|
| @@ -103,9 +103,9 @@ LayoutObject* LayoutObjectChildList::removeChildNode(LayoutObject* owner, Layout
|
| if (lastChild() == oldChild)
|
| setLastChild(oldChild->previousSibling());
|
|
|
| - oldChild->setPreviousSibling(0);
|
| - oldChild->setNextSibling(0);
|
| - oldChild->setParent(0);
|
| + oldChild->setPreviousSibling(nullptr);
|
| + oldChild->setNextSibling(nullptr);
|
| + oldChild->setParent(nullptr);
|
|
|
| oldChild->registerSubtreeChangeListenerOnDescendants(oldChild->consumesSubtreeChangeNotification());
|
|
|
|
|