Bug 230676

Summary: [css-grid] Transfer sizes from the aspect-ratio while resolving min-length for auto repetitions
Product: WebKit Reporter: zsun
Component: CSSAssignee: zsun
Status: RESOLVED FIXED    
Severity: Normal CC: changseok, esprehn+autocc, ews-watchlist, glenn, jfernandez, kondapallykalyan, obrufau, pdr, rego, svillar, webkit-bug-importer
Priority: P2 Keywords: InRadar
Version: WebKit Nightly Build   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
Patch
none
Patch none

zsun
Reported 2021-09-23 01:35:28 PDT
When resolve min-length for auto repetitions, we need to consider transferred sizes from the aspect-ratio.
Attachments
Patch (4.85 KB, patch)
2021-09-23 01:52 PDT, zsun
no flags
Patch (4.92 KB, patch)
2021-09-29 04:42 PDT, zsun
no flags
zsun
Comment 1 2021-09-23 01:52:35 PDT
Sergio Villar Senin
Comment 2 2021-09-29 01:34:44 PDT
Comment on attachment 439026 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=439026&action=review Nice fix > Source/WebCore/rendering/RenderGrid.cpp:483 > + const Length& minSizeForTheOtherAxis = isRowAxis ? style().logicalMinHeight() : style().logicalMinWidth(); You can just use auto&. Also regarding the name I prefer minSizeForOrthogonalAxis, we've been using the "orthogonal" term for grid and flex extensively. > Source/WebCore/rendering/RenderGrid.cpp:484 > + if (!availableMaxSize && (!minSize.isSpecified() && (!minSizeForTheOtherAxis.isSpecified() || shouldIgnoreAspectRatio()))) I think you can remove the parentheses just before !minSize.isSpecified(). Also I think we can refactor the last condition into a variable and use it here and bellow. bool shouldComputeMinSizeFromAspectRatio = minSizeForTheOtherAxis.isSpecified() && !shouldIgnoreAspectRatio(); and then you'd use !shouldComputeMinSizeFromAspectRatio here and shouldComputeMinSizeAspectRatio in the else if block bellow.
Sergio Villar Senin
Comment 3 2021-09-29 01:35:15 PDT
Comment on attachment 439026 [details] Patch Forgot the r=me : )
zsun
Comment 4 2021-09-29 04:42:03 PDT
Radar WebKit Bug Importer
Comment 5 2021-09-30 01:36:17 PDT
EWS
Comment 6 2021-09-30 12:15:45 PDT
Committed r283321 (242346@main): <https://commits.webkit.org/242346@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 439593 [details].
Note You need to log in before you can comment on or make changes to this bug.