| Index: Source/core/rendering/RenderBlock.cpp
|
| diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
|
| index 5904ebd27ab0fbf205a7b55a81d1843b84aa7437..2098994a11bbe97eb03fbde5ba4307ea40fdca2e 100644
|
| --- a/Source/core/rendering/RenderBlock.cpp
|
| +++ b/Source/core/rendering/RenderBlock.cpp
|
| @@ -160,6 +160,12 @@ RenderBlock::RenderBlock(ContainerNode* node)
|
| // By default, subclasses do not have inline children.
|
| }
|
|
|
| +void RenderBlock::trace(Visitor* visitor)
|
| +{
|
| + visitor->trace(m_children);
|
| + RenderBox::trace(visitor);
|
| +}
|
| +
|
| static void removeBlockFromDescendantAndContainerMaps(RenderBlock* block, TrackedDescendantsMap*& descendantMap, TrackedContainerMap*& containerMap)
|
| {
|
| if (OwnPtr<TrackedRendererListHashSet> descendantSet = descendantMap->take(block)) {
|
| @@ -1050,7 +1056,7 @@ void RenderBlock::removeLeftoverAnonymousBlock(RenderBlock* child)
|
| }
|
|
|
| child->children()->setFirstChild(0);
|
| - child->m_next = 0;
|
| + child->m_next = nullptr;
|
|
|
| // Remove all the information in the flow thread associated with the leftover anonymous block.
|
| child->removeFromRenderFlowThread();
|
|
|