mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-29 21:57:18 +00:00
LibWeb/CSS: Remove unnecessary shorthand serialization special cases
The serialization of these properties is improved by using the new default behavior.
This commit is contained in:
parent
63228477a4
commit
263cb3f8ca
Notes:
github-actions[bot]
2025-04-07 10:40:01 +00:00
Author: https://github.com/tcl3
Commit: 263cb3f8ca
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4259
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 72 additions and 19 deletions
|
@ -78,9 +78,9 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'WebkitFlexDirection': 'row'
|
||||
'webkitFlexDirection': 'row'
|
||||
'-webkit-flex-direction': 'row'
|
||||
'WebkitFlexFlow': 'row nowrap'
|
||||
'webkitFlexFlow': 'row nowrap'
|
||||
'-webkit-flex-flow': 'row nowrap'
|
||||
'WebkitFlexFlow': 'row'
|
||||
'webkitFlexFlow': 'row'
|
||||
'-webkit-flex-flow': 'row'
|
||||
'WebkitFlexGrow': '0'
|
||||
'webkitFlexGrow': '0'
|
||||
'-webkit-flex-grow': '0'
|
||||
|
@ -322,8 +322,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'flex-basis': 'auto'
|
||||
'flexDirection': 'row'
|
||||
'flex-direction': 'row'
|
||||
'flexFlow': 'row nowrap'
|
||||
'flex-flow': 'row nowrap'
|
||||
'flexFlow': 'row'
|
||||
'flex-flow': 'row'
|
||||
'flexGrow': '0'
|
||||
'flex-grow': '0'
|
||||
'flexShrink': '1'
|
||||
|
@ -432,8 +432,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'letter-spacing': 'normal'
|
||||
'lineHeight': 'normal'
|
||||
'line-height': 'normal'
|
||||
'listStyle': 'outside none disc'
|
||||
'list-style': 'outside none disc'
|
||||
'listStyle': 'outside'
|
||||
'list-style': 'outside'
|
||||
'listStyleImage': 'none'
|
||||
'list-style-image': 'none'
|
||||
'listStylePosition': 'outside'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue