| Index: third_party/WebKit/Source/core/layout/LayoutTable.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTable.h b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| index d5bc8c9284b60e0538c645f1b930a74ad0bf8567..ca71f1e92838c84f837b05c9b06d9d7a8fdb8fa3 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTable.h
|
| @@ -432,7 +432,7 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| void paintMask(const PaintInfo&, const LayoutPoint&) const final;
|
|
|
| const CollapsedBorderValues& collapsedBorders() const {
|
| - ASSERT(m_collapsedBordersValid);
|
| + DCHECK(m_collapsedBordersValid);
|
| return m_collapsedBorders;
|
| }
|
|
|
| @@ -606,7 +606,7 @@ class CORE_EXPORT LayoutTable final : public LayoutBlock {
|
| };
|
|
|
| inline LayoutTableSection* LayoutTable::topSection() const {
|
| - ASSERT(!needsSectionRecalc());
|
| + DCHECK(!needsSectionRecalc());
|
| if (m_head)
|
| return m_head;
|
| if (m_firstBody)
|
|
|