| Index: third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutView.cpp b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| index 42293d631735bf946db363eda2991ff46675b6e3..aa2ca027d585e96acb81a518f2755c9e3ccb9226 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutView.cpp
|
| @@ -376,7 +376,7 @@ const LayoutObject* LayoutView::pushMappingToContainer(const LayoutBoxModelObjec
|
|
|
| // If a container was specified, and was not 0 or the LayoutView, then we
|
| // should have found it by now unless we're traversing to a parent document.
|
| - ASSERT_ARG(ancestorToStopAt, !ancestorToStopAt || ancestorToStopAt == this || container);
|
| + DCHECK(!ancestorToStopAt || ancestorToStopAt == this || container);
|
|
|
| if ((!ancestorToStopAt || container) && shouldUseTransformFromContainer(container)) {
|
| TransformationMatrix t;
|
|
|