| Index: third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableCell.h b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| index 73d34eb35fcc8bceb34c4c9523d5736eaa4aa8a9..ef0e75b3b54e4118f2c39674723af3964a197515 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| @@ -253,13 +253,13 @@ class CORE_EXPORT LayoutTableCell final : public LayoutBlockFlow {
|
| }
|
|
|
| const BorderValue& borderAdjoiningCellBefore(const LayoutTableCell* cell) {
|
| - ASSERT_UNUSED(cell, table()->cellAfter(cell) == this);
|
| + DCHECK_EQ(table()->cellAfter(cell), this);
|
| // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
|
| return style()->borderStart();
|
| }
|
|
|
| const BorderValue& borderAdjoiningCellAfter(const LayoutTableCell* cell) {
|
| - ASSERT_UNUSED(cell, table()->cellBefore(cell) == this);
|
| + DCHECK_EQ(table()->cellBefore(cell), this);
|
| // FIXME: https://webkit.org/b/79272 - Add support for mixed directionality at the cell level.
|
| return style()->borderEnd();
|
| }
|
|
|