| Index: third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| index 0f6faf1cc016b900853aa5e6eb43268f39611657..49d25e0e6202d58062c54e21c0851061e72b01a4 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| @@ -3356,7 +3356,7 @@ void LayoutBlockFlow::makeChildrenNonInline(LayoutObject* insertionPoint) {
|
| moveChildrenTo(block, inlineRunStart, child);
|
| }
|
|
|
| -#if ENABLE(ASSERT)
|
| +#if DCHECK_IS_ON()
|
| for (LayoutObject* c = firstChild(); c; c = c->nextSibling())
|
| ASSERT(!c->isInline());
|
| #endif
|
| @@ -3576,7 +3576,7 @@ void LayoutBlockFlow::removeFloatingObject(LayoutBox* floatBox) {
|
| this));
|
| floatingObject.originatingLine()->markDirty();
|
| }
|
| -#if ENABLE(ASSERT)
|
| +#if DCHECK_IS_ON()
|
| floatingObject.setOriginatingLine(nullptr);
|
| #endif
|
| }
|
|
|