| 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 7d6850eb57dda198d769a99d1477a7443c5424a4..08b434cb523318921d8f0f93ded07891f4fcee21 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableRow.h
|
| @@ -85,9 +85,7 @@ class CORE_EXPORT LayoutTableRow final : public LayoutTableBoxComponent {
|
| }
|
|
|
| void SetRowIndex(unsigned row_index) {
|
| - if (UNLIKELY(row_index > kMaxRowIndex))
|
| - IMMEDIATE_CRASH();
|
| -
|
| + CHECK_LE(row_index, kMaxRowIndex);
|
| row_index_ = row_index;
|
| }
|
|
|
|
|