| Index: Source/core/rendering/RenderBlock.cpp
|
| diff --git a/Source/core/rendering/RenderBlock.cpp b/Source/core/rendering/RenderBlock.cpp
|
| index 254661cd4156cb0cd791b63f4bde56abbff163db..2d0e66f81a8c87a706952ff95a8683d1e81f19b1 100644
|
| --- a/Source/core/rendering/RenderBlock.cpp
|
| +++ b/Source/core/rendering/RenderBlock.cpp
|
| @@ -1013,7 +1013,7 @@ void RenderBlock::makeChildrenNonInline(RenderObject *insertionPoint)
|
| moveChildrenTo(block, inlineRunStart, child);
|
| }
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| for (RenderObject *c = firstChild(); c; c = c->nextSibling())
|
| ASSERT(!c->isInline());
|
| #endif
|
| @@ -4917,7 +4917,7 @@ bool RenderBlock::recalcOverflowAfterStyleChange()
|
| return !hasOverflowClip();
|
| }
|
|
|
| -#ifndef NDEBUG
|
| +#if ENABLE(ASSERT)
|
| void RenderBlock::checkPositionedObjectsNeedLayout()
|
| {
|
| if (!gPositionedDescendantsMap)
|
| @@ -4932,6 +4932,10 @@ void RenderBlock::checkPositionedObjectsNeedLayout()
|
| }
|
| }
|
|
|
| +#endif
|
| +
|
| +#ifndef NDEBUG
|
| +
|
| void RenderBlock::showLineTreeAndMark(const InlineBox* markedBox1, const char* markedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const RenderObject* obj) const
|
| {
|
| showRenderObject();
|
|
|