| 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 e8d57798fd5b37131a6932be541b97c2b07558e3..59cfb15c9fe7ae6491e9f2a619bbfef1ca5d89cd 100644
|
| --- a/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| +++ b/third_party/WebKit/Source/core/layout/LayoutBlock.cpp
|
| @@ -1927,8 +1927,8 @@ int LayoutBlock::columnGap() const
|
|
|
| void LayoutBlock::scrollbarsChanged(bool horizontalScrollbarChanged, bool verticalScrollbarChanged)
|
| {
|
| - m_widthAvailableToChildrenChanged |= horizontalScrollbarChanged;
|
| - m_heightAvailableToChildrenChanged |= verticalScrollbarChanged;
|
| + m_widthAvailableToChildrenChanged |= verticalScrollbarChanged;
|
| + m_heightAvailableToChildrenChanged |= horizontalScrollbarChanged;
|
| }
|
|
|
| void LayoutBlock::computeIntrinsicLogicalWidths(LayoutUnit& minLogicalWidth, LayoutUnit& maxLogicalWidth) const
|
|
|