| 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 7df99b4f73a07bd936ade3e848a9ac99304f0a9c..8612b6e7167153dfebc9e1142993f49a02040d0c 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.
|
| - DCHECK(!ancestorToStopAt || ancestorToStopAt == this || container);
|
| + ASSERT_ARG(ancestorToStopAt, !ancestorToStopAt || ancestorToStopAt == this || container);
|
|
|
| if ((!ancestorToStopAt || container) && shouldUseTransformFromContainer(container)) {
|
| TransformationMatrix t;
|
|
|