| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.h b/third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| index 74c64d602dd36a8cbfd6257d0daea28c6fc5b626..3ab360ffe82703898db97764a6839133c24dc246 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| @@ -93,8 +93,8 @@ class CORE_EXPORT LayoutTableRow final : public LayoutTableBoxComponent {
|
|
|
| bool rowIndexWasSet() const { return m_rowIndex != unsetRowIndex; }
|
| unsigned rowIndex() const {
|
| - ASSERT(rowIndexWasSet());
|
| - ASSERT(
|
| + DCHECK(rowIndexWasSet());
|
| + DCHECK(
|
| !section() ||
|
| !section()
|
| ->needsCellRecalc()); // index may be bogus if cells need recalc.
|
|
|