| Index: third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| index deedac924cb4c2d945244d0958bcf5fb300adc02..34994f14cdbc3f7b4e3946948247fd3d1c0bd4b6 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.cpp
|
| @@ -98,14 +98,18 @@ void LayoutTableRow::styleDidChange(StyleDifference diff,
|
|
|
| const BorderValue& LayoutTableRow::borderAdjoiningStartCell(
|
| const LayoutTableCell* cell) const {
|
| - ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
|
| +#if DCHECK_IS_ON()
|
| + DCHECK(cell->isFirstOrLastCellInRow());
|
| +#endif
|
| // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
|
| return style()->borderStart();
|
| }
|
|
|
| const BorderValue& LayoutTableRow::borderAdjoiningEndCell(
|
| const LayoutTableCell* cell) const {
|
| - ASSERT_UNUSED(cell, cell->isFirstOrLastCellInRow());
|
| +#if DCHECK_IS_ON()
|
| + DCHECK(cell->isFirstOrLastCellInRow());
|
| +#endif
|
| // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
|
| return style()->borderEnd();
|
| }
|
|
|