| Index: third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutObject.cpp b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| index 37f163851d52e143dff84248748b9b67fc700f65..557fd6042a30400087036c6fc937c67aa48a6b76 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutObject.cpp
|
| @@ -705,7 +705,7 @@ static inline bool objectIsRelayoutBoundary(const LayoutObject* object)
|
| if (!object->hasOverflowClip())
|
| return false;
|
|
|
| - if (object->style()->width().isIntrinsicOrAuto() || object->style()->height().isIntrinsicOrAuto() || object->style()->height().hasPercent())
|
| + if (object->style()->width().isIntrinsicOrAuto() || object->style()->height().isIntrinsicOrAuto() || object->style()->height().isPercentOrCalc())
|
| return false;
|
|
|
| // Scrollbar parts can be removed during layout. Avoid the complexity of having to deal with that.
|
|
|