| Index: Source/core/platform/ScrollView.cpp
|
| diff --git a/Source/core/platform/ScrollView.cpp b/Source/core/platform/ScrollView.cpp
|
| index 47142751ade7e7cb4553ea29daef50119c3d505b..575de45ed020e2edb8bc23521b5e1d90e11dcb67 100644
|
| --- a/Source/core/platform/ScrollView.cpp
|
| +++ b/Source/core/platform/ScrollView.cpp
|
| @@ -217,9 +217,9 @@ IntRect ScrollView::visibleContentRect(VisibleContentRectIncludesScrollbars scol
|
| return IntRect(IntPoint(m_scrollOffset), expandedIntSize(visibleContentSize));
|
| }
|
|
|
| -IntSize ScrollView::layoutSize() const
|
| +IntSize ScrollView::layoutSize(VisibleContentRectIncludesScrollbars scrollbarInclusion) const
|
| {
|
| - return m_fixedLayoutSize.isEmpty() || !m_useFixedLayout ? unscaledVisibleContentSize(ExcludeScrollbars) : m_fixedLayoutSize;
|
| + return m_fixedLayoutSize.isEmpty() || !m_useFixedLayout ? unscaledVisibleContentSize(scrollbarInclusion) : m_fixedLayoutSize;
|
| }
|
|
|
| IntSize ScrollView::fixedLayoutSize() const
|
|
|