LibWeb/CSS: Make empty GridTrackSize value serialize to "none"

This is the default value of the `grid-template-rows` and
`grid-template-columns` properties.
This commit is contained in:
Tim Ledbetter 2025-03-22 00:35:08 +00:00 committed by Alexander Kalenik
commit 7b0b6e7493
Notes: github-actions[bot] 2025-03-22 16:34:33 +00:00
13 changed files with 101 additions and 46 deletions

View file

@ -76,14 +76,14 @@ font-weight: 'calc(2)' -> '2'
font-weight: 'calc(2 * var(--n))' -> '4'
font-width: 'calc(2%)' -> '2%'
font-width: 'calc(2% * var(--n))' -> '4%'
grid-auto-columns: 'calc(2fr)' -> 'auto'
grid-auto-columns: 'calc(2fr * var(--n))' -> 'auto'
grid-auto-rows: 'calc(2fr)' -> 'auto'
grid-auto-rows: 'calc(2fr * var(--n))' -> 'auto'
grid-template-columns: 'calc(2fr)' -> 'auto'
grid-template-columns: 'calc(2fr * var(--n))' -> 'auto'
grid-template-rows: 'calc(2fr)' -> 'auto'
grid-template-rows: 'calc(2fr * var(--n))' -> 'auto'
grid-auto-columns: 'calc(2fr)' -> 'none'
grid-auto-columns: 'calc(2fr * var(--n))' -> 'none'
grid-auto-rows: 'calc(2fr)' -> 'none'
grid-auto-rows: 'calc(2fr * var(--n))' -> 'none'
grid-template-columns: 'calc(2fr)' -> 'none'
grid-template-columns: 'calc(2fr * var(--n))' -> 'none'
grid-template-rows: 'calc(2fr)' -> 'none'
grid-template-rows: 'calc(2fr * var(--n))' -> 'none'
height: 'calc(2px)' -> '2px'
height: 'calc(2px * var(--n))' -> '4px'
left: 'calc(2px)' -> '2px'