| Index: third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| diff --git a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| index bf86b7a8899d54ce5e7c76a9e7f4067b3e38422a..53ec7ec493a2565c616deacd7a5ca40dd11e1668 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| @@ -1921,6 +1921,12 @@ int LayoutBlock::columnGap() const
|
| return static_cast<int>(style()->columnGap());
|
| }
|
|
|
| +void LayoutBlock::scrollbarsChanged(bool horizontalScrollbarChanged, bool verticalScrollbarChanged)
|
| +{
|
| + m_widthAvailableToChildrenChanged |= horizontalScrollbarChanged;
|
| + m_heightAvailableToChildrenChanged |= verticalScrollbarChanged;
|
| +}
|
| +
|
| void LayoutBlock::computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const
|
| {
|
| if (childrenInline()) {
|
|
|