1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 21:47:45 +00:00

LibWeb: Align GridFormattingContext::run_track_sizing() with the spec

1. Stop using -1 to indicate infinity value of growth limit. Just use
   INFINITY for that.
2. More complete implementation of "Expand Flexible Tracks" step.
3. Return AvailableSize from get_free_space: spec says that this
   function can return indefinite size and it is ok.
This commit is contained in:
Aliaksandr Kalenik 2023-05-09 05:03:14 +03:00 committed by Andreas Kling
parent f2323b5b99
commit fb6b52b3fb
12 changed files with 164 additions and 161 deletions

View file

@ -3,7 +3,6 @@
display: grid;
background-color: lightsalmon;
grid-template-columns: minmax(150px, 300px) minmax(150px, 300px);
/* FIXME: We currently does not layout this correctly. Rows take 25px even if 50px are available. */
grid-template-rows: minmax(25px, 50px) minmax(25px, 50px);
}