| Index: third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| index 3f5c49dcfb86e3a8efbb65474358313507d7ac04..71ed6fed4f882c41d436d36cc79b87fea83baec9 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutTableBoxComponent.h
|
| @@ -43,11 +43,11 @@ class CORE_EXPORT LayoutTableBoxComponent : public LayoutBox {
|
| LayoutObjectChildList* children() { return &m_children; }
|
|
|
| LayoutObject* firstChild() const {
|
| - DCHECK(children() == virtualChildren());
|
| + DCHECK_EQ(children(), virtualChildren());
|
| return children()->firstChild();
|
| }
|
| LayoutObject* lastChild() const {
|
| - DCHECK(children() == virtualChildren());
|
| + DCHECK_EQ(children(), virtualChildren());
|
| return children()->lastChild();
|
| }
|
|
|
|
|