| Index: third_party/WebKit/Source/core/layout/LayoutRubyBase.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutRubyBase.cpp b/third_party/WebKit/Source/core/layout/LayoutRubyBase.cpp
|
| index 1a082a529732ddc00c7c0e3ff36f94f5d20640b1..3dc47e6a9c77711d111de5aab9987be0c4abc340 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutRubyBase.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutRubyBase.cpp
|
| @@ -55,7 +55,7 @@ void LayoutRubyBase::moveChildren(LayoutRubyBase* toBase,
|
| // and appends them to toBase.
|
| DCHECK(toBase);
|
| // Callers should have handled the percent height descendant map.
|
| - ASSERT(!hasPercentHeightDescendants());
|
| + DCHECK(!hasPercentHeightDescendants());
|
|
|
| if (beforeChild && beforeChild->parent() != this)
|
| beforeChild = splitAnonymousBoxesAroundChild(beforeChild);
|
| @@ -73,7 +73,7 @@ void LayoutRubyBase::moveChildren(LayoutRubyBase* toBase,
|
|
|
| void LayoutRubyBase::moveInlineChildren(LayoutRubyBase* toBase,
|
| LayoutObject* beforeChild) {
|
| - ASSERT(childrenInline());
|
| + DCHECK(childrenInline());
|
| DCHECK(toBase);
|
|
|
| if (!firstChild())
|
| @@ -101,7 +101,7 @@ void LayoutRubyBase::moveInlineChildren(LayoutRubyBase* toBase,
|
|
|
| void LayoutRubyBase::moveBlockChildren(LayoutRubyBase* toBase,
|
| LayoutObject* beforeChild) {
|
| - ASSERT(!childrenInline());
|
| + DCHECK(!childrenInline());
|
| DCHECK(toBase);
|
|
|
| if (!firstChild())
|
|
|