Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(490)

Unified Diff: third_party/WebKit/Source/core/layout/LayoutBlock.cpp

Issue 1814323002: Mixed up vertical and horizontal :( (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: testexpectations/slowtests Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698