mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-11 20:16:02 +00:00
LibWeb: Support border-{block,inline} shorthands
Gains us 4 WPT tests
This commit is contained in:
parent
d280cf56e6
commit
da40419c5b
Notes:
github-actions[bot]
2025-07-09 09:12:04 +00:00
Author: https://github.com/Calme1709
Commit: da40419c5b
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5366
Reviewed-by: https://github.com/AtkinsSJ ✅
5 changed files with 41 additions and 8 deletions
|
@ -201,6 +201,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'blockSize': '0px'
|
||||
'block-size': '0px'
|
||||
'border': '0px rgb(0, 0, 0)'
|
||||
'borderBlock': '0px rgb(0, 0, 0)'
|
||||
'border-block': '0px rgb(0, 0, 0)'
|
||||
'borderBlockColor': 'rgb(0, 0, 0)'
|
||||
'border-block-color': 'rgb(0, 0, 0)'
|
||||
'borderBlockEnd': '0px rgb(0, 0, 0)'
|
||||
|
@ -255,6 +257,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'border-image-source': 'none'
|
||||
'borderImageWidth': '1'
|
||||
'border-image-width': '1'
|
||||
'borderInline': '0px rgb(0, 0, 0)'
|
||||
'border-inline': '0px rgb(0, 0, 0)'
|
||||
'borderInlineColor': 'rgb(0, 0, 0)'
|
||||
'border-inline-color': 'rgb(0, 0, 0)'
|
||||
'borderInlineEnd': '0px rgb(0, 0, 0)'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue