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

@ -396,10 +396,10 @@ All supported properties and their default values exposed from CSSStylePropertie
'grid-template': ''
'gridTemplateAreas': 'none'
'grid-template-areas': 'none'
'gridTemplateColumns': 'auto'
'grid-template-columns': 'auto'
'gridTemplateRows': 'auto'
'grid-template-rows': 'auto'
'gridTemplateColumns': 'none'
'grid-template-columns': 'none'
'gridTemplateRows': 'none'
'grid-template-rows': 'none'
'height': '0px'
'imageRendering': 'auto'
'image-rendering': 'auto'