| 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 86c89055bb7ce6623f6cc00e09fdd72669e442c7..ad4c066abcccc0ed6fffb446729817b204c9187e 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlockFlow.cpp
|
| @@ -3123,4 +3123,15 @@ bool LayoutBlockFlow::recalcInlineChildrenOverflowAfterStyleChange()
|
| return childrenOverflowChanged;
|
| }
|
|
|
| +#ifndef NDEBUG
|
| +
|
| +void LayoutBlockFlow::showLineTreeAndMark(const InlineBox* markedBox1, const char* markedLabel1, const InlineBox* markedBox2, const char* markedLabel2, const LayoutObject* obj) const
|
| +{
|
| + showLayoutObject();
|
| + for (const RootInlineBox* root = firstRootBox(); root; root = root->nextRootBox())
|
| + root->showLineTreeAndMark(markedBox1, markedLabel1, markedBox2, markedLabel2, obj, 1);
|
| +}
|
| +
|
| +#endif
|
| +
|
| } // namespace blink
|
|
|