| Index: third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
|
| index 846637693e0a764d86073d4852f70f65918418f8..434e9574a9e3279ad0fb712ecad85e33c734c0e0 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutMultiColumnFlowThread.cpp
|
| @@ -139,7 +139,7 @@ static LayoutObject* nextInPreOrderAfterChildrenSkippingOutOfFlow(
|
| }
|
| if (!object)
|
| return nullptr;
|
| -#if ENABLE(ASSERT)
|
| +#if DCHECK_IS_ON()
|
| // Make sure that we didn't stumble into an inner multicol container.
|
| for (LayoutObject* walker = object->parent(); walker && walker != flowThread;
|
| walker = walker->parent())
|
| @@ -188,7 +188,7 @@ static LayoutObject* previousInPreOrderSkippingOutOfFlow(
|
| }
|
| if (!object || object == flowThread)
|
| return nullptr;
|
| -#if ENABLE(ASSERT)
|
| +#if DCHECK_IS_ON()
|
| // Make sure that we didn't stumble into an inner multicol container.
|
| for (LayoutObject* walker = object->parent(); walker && walker != flowThread;
|
| walker = walker->parent())
|
|
|