RESOLVED FIXED Bug 153868
[css-grid] GridSpan refactoring
https://bugs.webkit.org/show_bug.cgi?id=153868
Summary [css-grid] GridSpan refactoring
Manuel Rego Casasnovas
Reported 2016-02-04 08:01:10 PST
This is somehow a port of a patch in Blink: https://codereview.chromium.org/1459373002/ It's not exactly the same, as we were already not using pointers in GridCoordinate in WebKit. But porting this will help to avoid repeated calls to resolveGridPositionsFromStyle() from RenderGrid.
Attachments
Patch (50.50 KB, patch)
2016-02-04 08:04 PST, Manuel Rego Casasnovas
no flags
Patch (50.46 KB, patch)
2016-02-17 02:54 PST, Manuel Rego Casasnovas
no flags
Manuel Rego Casasnovas
Comment 1 2016-02-04 08:04:29 PST
Sergio Villar Senin
Comment 2 2016-02-17 01:39:01 PST
Comment on attachment 270656 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=270656&action=review > Source/WebCore/ChangeLog:8 > + Add new boolean to know if a GridSpan is definite or indefinite. I was going to complain asking for an enumerated type, but then I saw that you are actually using it. In any case you need to fix this sentence. > Source/WebCore/rendering/style/GridCoordinate.h:50 > + Extra line here > Source/WebCore/rendering/style/GridResolvedPosition.cpp:79 > + initialPosition = (direction == ForColumns) ? gridItem.style().gridItemColumnStart() : gridItem.style().gridItemRowStart(); Consider doing bool isRowAxis = direction == ForColumns; and using that in these two ternary operators (also you don't need parens). > Source/WebCore/rendering/style/GridResolvedPosition.cpp:311 > + // We can't get our grid positions without running the auto placement algorithm. You can move the comment out of the if block and remove the brackets.
Manuel Rego Casasnovas
Comment 3 2016-02-17 02:54:31 PST
Manuel Rego Casasnovas
Comment 4 2016-02-17 02:55:38 PST
Thanks for the review, applied suggested changes!
WebKit Commit Bot
Comment 5 2016-02-17 03:45:29 PST
Comment on attachment 271549 [details] Patch Clearing flags on attachment: 271549 Committed r196691: <http://trac.webkit.org/changeset/196691>
WebKit Commit Bot
Comment 6 2016-02-17 03:45:33 PST
All reviewed patches have been landed. Closing bug.
Note You need to log in before you can comment on or make changes to this bug.