RESOLVED FIXED 171225
[css-grid] Remove most of the usage of SizingOperation
https://bugs.webkit.org/show_bug.cgi?id=171225
Summary [css-grid] Remove most of the usage of SizingOperation
Sergio Villar Senin
Reported 2017-04-24 09:25:02 PDT
[css-grid] Remove most of the usage of SizingOperation
Attachments
Patch (38.09 KB, patch)
2017-04-24 09:30 PDT, Sergio Villar Senin
no flags
Patch (38.05 KB, patch)
2017-04-25 03:43 PDT, Sergio Villar Senin
no flags
Archive of layout-test-results from ews122 for ios-simulator-wk2 (12.77 MB, application/zip)
2017-04-25 05:52 PDT, Build Bot
no flags
Patch (37.81 KB, patch)
2017-04-26 08:07 PDT, Sergio Villar Senin
darin: review+
Sergio Villar Senin
Comment 1 2017-04-24 09:30:44 PDT
Javier Fernandez
Comment 2 2017-04-25 02:09:17 PDT
Comment on attachment 307983 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=307983&action=review The change looks good to me, regarding the Grid Layout logic changes. > Source/WebCore/rendering/RenderGrid.cpp:458 > + if (!isRowAxis && !availableSize) { Aren't we missing some cases here ? - isRowAxis - !isRowAxis && availableSize > LayoutTests/fast/css-grid-layout/grid-track-sizing-with-percentages-and-orthogonal-flows.html:28 > + align-content: start; nip: we can use the "contentStart" class from the grid-alignment.css resource file
Sergio Villar Senin
Comment 3 2017-04-25 03:40:05 PDT
Comment on attachment 307983 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=307983&action=review >> Source/WebCore/rendering/RenderGrid.cpp:458 >> + if (!isRowAxis && !availableSize) { > > Aren't we missing some cases here ? > - isRowAxis > - !isRowAxis && availableSize No because we're now passing the availableSize as argument, we have passed the responsibility to the caller of the function. >> LayoutTests/fast/css-grid-layout/grid-track-sizing-with-percentages-and-orthogonal-flows.html:28 >> + align-content: start; > > nip: we can use the "contentStart" class from the grid-alignment.css resource file Right, I'll change it.
Sergio Villar Senin
Comment 4 2017-04-25 03:43:15 PDT
Build Bot
Comment 5 2017-04-25 05:52:22 PDT
Comment on attachment 308085 [details] Patch Attachment 308085 [details] did not pass ios-sim-ews (ios-simulator-wk2): Output: http://webkit-queues.webkit.org/results/3601103 New failing tests: compositing/absolute-inside-out-of-view-fixed.html
Build Bot
Comment 6 2017-04-25 05:52:24 PDT
Created attachment 308096 [details] Archive of layout-test-results from ews122 for ios-simulator-wk2 The attached test failures were seen while running run-webkit-tests on the ios-sim-ews. Bot: ews122 Port: ios-simulator-wk2 Platform: Mac OS X 10.11.6
Manuel Rego Casasnovas
Comment 7 2017-04-25 07:51:41 PDT
Comment on attachment 308085 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308085&action=review > Source/WebCore/rendering/RenderGrid.cpp:307 > + bool isRowAxis = direction == ForColumns; > + const Length& gap = isRowAxis ? style().gridColumnGap() : style().gridRowGap(); > + > + std::optional<LayoutUnit> availableSize; > + if (gap.isPercent()) > + availableSize = isRowAxis ? availableLogicalWidth() : availableLogicalHeightForPercentageComputation(); Why not call availableSpaceForGutters() here? This code is duplicated now.
Sergio Villar Senin
Comment 8 2017-04-26 07:37:12 PDT
Comment on attachment 308085 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=308085&action=review >> Source/WebCore/rendering/RenderGrid.cpp:307 >> + availableSize = isRowAxis ? availableLogicalWidth() : availableLogicalHeightForPercentageComputation(); > > Why not call availableSpaceForGutters() here? This code is duplicated now. Right, I'll change it.
Sergio Villar Senin
Comment 9 2017-04-26 08:07:09 PDT
Sergio Villar Senin
Comment 10 2017-04-26 08:34:49 PDT
Note You need to log in before you can comment on or make changes to this bug.