RESOLVED FIXED 136453
[CSS Grid Layout] Handle percentages of indefinite sizes in minmax() and grid-auto-*
https://bugs.webkit.org/show_bug.cgi?id=136453
Summary [CSS Grid Layout] Handle percentages of indefinite sizes in minmax() and grid...
Sergio Villar Senin
Reported 2014-09-02 08:50:32 PDT
[CSS Grid Layout] Handle percentages of indefinite sizes in minmax() and grid-auto-*
Attachments
Patch (22.56 KB, patch)
2014-09-02 09:13 PDT, Sergio Villar Senin
darin: review+
buildbot: commit-queue-
Archive of layout-test-results from webkit-ews-13 for mac-mountainlion-wk2 (914.79 KB, application/zip)
2014-09-02 14:31 PDT, Build Bot
no flags
Sergio Villar Senin
Comment 1 2014-09-02 09:13:05 PDT
Build Bot
Comment 2 2014-09-02 14:30:59 PDT
Comment on attachment 237491 [details] Patch Attachment 237491 [details] did not pass mac-wk2-ews (mac-wk2): Output: http://webkit-queues.appspot.com/results/5889874787827712 New failing tests: animations/3d/transform-origin-vs-functions.html animations/3d/matrix-transform-type-animation.html animations/3d/state-at-end-event-transform.html canvas/philip/tests/2d.canvas.reference.html canvas/philip/tests/2d.clearRect+fillRect.basic.html canvas/philip/tests/2d.clearRect+fillRect.alpha0.5.html animations/3d/replace-filling-transform.html canvas/philip/tests/2d.clearRect+fillRect.alpha0.html
Build Bot
Comment 3 2014-09-02 14:31:02 PDT
Created attachment 237515 [details] Archive of layout-test-results from webkit-ews-13 for mac-mountainlion-wk2 The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. Bot: webkit-ews-13 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5
Sergio Villar Senin
Comment 4 2014-09-23 02:14:03 PDT
(In reply to comment #3) > Created an attachment (id=237515) [details] > Archive of layout-test-results from webkit-ews-13 for mac-mountainlion-wk2 > > The attached test failures were seen while running run-webkit-tests on the mac-wk2-ews. > Bot: webkit-ews-13 Port: mac-mountainlion-wk2 Platform: Mac OS X 10.8.5 Totally unrelated
Sergio Villar Senin
Comment 5 2014-09-23 07:15:13 PDT
*** Bug 136940 has been marked as a duplicate of this bug. ***
Sergio Villar Senin
Comment 6 2014-09-23 07:43:09 PDT
Gentle reminder...
Darin Adler
Comment 7 2014-09-28 18:03:07 PDT
Comment on attachment 237491 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=237491&action=review > Source/WebCore/rendering/RenderGrid.cpp:303 > + GridTrackSize trackSize = gridTrackSize(direction, i); A return value of type GridTrackSize can go into a local variable of const GridTrackSize& and gets an appropriate lifetime. So these changes, while OK, are not needed. > Source/WebCore/rendering/RenderGrid.cpp:471 > + const Vector<GridTrackSize>& trackStyles = isForColumns ? style().gridColumns() : style().gridRows(); Seems like a good place to do auto&. > Source/WebCore/rendering/RenderGrid.cpp:472 > + const GridTrackSize& trackSize = (i >= trackStyles.size()) ? (isForColumns ? style().gridAutoColumns() : style().gridAutoRows()) : trackStyles[i]; Seems like a good place to do auto&.
Sergio Villar Senin
Comment 8 2014-09-29 03:08:50 PDT
Note You need to log in before you can comment on or make changes to this bug.