| Index: third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| index 8b2193cf88c0c631db2b50c599f57cfd605bf010..cf8df852b443f5ea548a9af7a39e47e52e1f29b5 100644
|
| --- a/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/TableLayoutAlgorithmAuto.cpp
|
| @@ -473,7 +473,8 @@ int TableLayoutAlgorithmAuto::calcEffectiveLogicalWidth()
|
| */
|
| void TableLayoutAlgorithmAuto::insertSpanCell(LayoutTableCell *cell)
|
| {
|
| - ASSERT_ARG(cell, cell && cell->colSpan() != 1);
|
| + DCHECK(cell);
|
| + DCHECK_NE(cell->colSpan(), 1u);
|
| if (!cell || cell->colSpan() == 1)
|
| return;
|
|
|
|
|