| 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 c51301715749e7c696b7b1756d41ecb13cbc2729..969a46408dd024a4fb8c7932abd921297cbe58e4 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableCell.h
|
| @@ -103,9 +103,7 @@ class CORE_EXPORT LayoutTableCell final : public LayoutBlockFlow {
|
| void ColSpanOrRowSpanChanged();
|
|
|
| void SetAbsoluteColumnIndex(unsigned column) {
|
| - if (UNLIKELY(column > kMaxColumnIndex))
|
| - IMMEDIATE_CRASH();
|
| -
|
| + CHECK_LE(column, kMaxColumnIndex);
|
| absolute_column_index_ = column;
|
| }
|
|
|
|
|