Skip to content

Commit

Permalink
Mixed up vertical and horizontal :(
Browse files Browse the repository at this point in the history
Small typo in the original change, https://codereview.chromium.org/1811753003/

BUG=594465, 593593, 590683, 593624, 593593
[email protected],[email protected]

Review URL: https://codereview.chromium.org/1814323002

Cr-Commit-Position: refs/heads/master@{#382309}
(cherry picked from commit d0298a9)

Review URL: https://codereview.chromium.org/1818123003 .

Cr-Commit-Position: refs/branch-heads/2661@{crosswalk-project#326}
Cr-Branched-From: ef6f6ae-refs/heads/master@{#378081}
  • Loading branch information
cbiesinger committed Mar 21, 2016
1 parent cdf06d9 commit 33194f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions third_party/WebKit/LayoutTests/SlowTests
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ crbug.com/327078 http/tests/inspector/network/long-script-content.html [ Slow ]
crbug.com/420008 [ Release ] inspector/editor/text-editor-word-jumps.html [ Slow ]
crbug.com/420008 [ Release ] http/tests/inspector/console-xhr-logging.html [ Slow ]
webkit.org/b/60109 inspector/elements/edit/edit-dom-actions.html [ Slow ]
crbug.com/596486 [ Linux ] inspector/elements/insert-node.html [ Slow ]
webkit.org/b/84735 [ Win ] http/tests/inspector/change-iframe-src.html [ Slow ]
crbug.com/504565 [ Mac ] http/tests/inspector/search/sources-search-scope.html [ Slow ]
crbug.com/451577 http/tests/inspector/resource-tree/resource-tree-crafted-frame-add.html [ Slow ]
Expand Down
2 changes: 2 additions & 0 deletions third_party/WebKit/LayoutTests/TestExpectations
Original file line number Diff line number Diff line change
Expand Up @@ -1346,6 +1346,8 @@ crbug.com/571376 http/tests/webfont/font-display-intervention.html [ Pass Failur

crbug.com/320139 fast/repaint/block-layout-inline-children-replaced.html [ Pass Failure ]

crbug.com/596486 [ Linux ] inspector/elements/edit/edit-dom-actions.html [ Timeout Pass ]

crbug.com/575766 http/tests/inspector/resource-tree/resource-tree-frame-add.html [ Timeout Pass ]
crbug.com/581468 http/tests/inspector/resource-tree/resource-tree-non-unique-url.html [ Pass Failure ]

Expand Down
4 changes: 2 additions & 2 deletions third_party/WebKit/Source/core/layout/LayoutBlock.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1923,8 +1923,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
Expand Down

0 comments on commit 33194f6

Please sign in to comment.