mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 16:46:08 +00:00
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:
parent
9bdd22c6b1
commit
7b0b6e7493
Notes:
github-actions[bot]
2025-03-22 16:34:33 +00:00
Author: https://github.com/tcl3
Commit: 7b0b6e7493
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4040
13 changed files with 101 additions and 46 deletions
|
@ -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'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue