LibWeb: Add the border-inline-* shorthand properties

This commit is contained in:
Tim Ledbetter 2025-06-30 12:07:39 +01:00 committed by Andreas Kling
commit 04a3a227c3
Notes: github-actions[bot] 2025-06-30 12:53:27 +00:00
8 changed files with 78 additions and 53 deletions

View file

@ -239,6 +239,8 @@ All supported properties and their default values exposed from CSSStylePropertie
'border-collapse': 'separate'
'borderColor': 'rgb(0, 0, 0)'
'border-color': 'rgb(0, 0, 0)'
'borderInlineColor': 'rgb(0, 0, 0)'
'border-inline-color': 'rgb(0, 0, 0)'
'borderInlineEnd': '0px rgb(0, 0, 0)'
'border-inline-end': '0px rgb(0, 0, 0)'
'borderInlineEndColor': 'rgb(0, 0, 0)'
@ -255,6 +257,10 @@ All supported properties and their default values exposed from CSSStylePropertie
'border-inline-start-style': 'none'
'borderInlineStartWidth': '0px'
'border-inline-start-width': '0px'
'borderInlineStyle': 'none'
'border-inline-style': 'none'
'borderInlineWidth': '0px'
'border-inline-width': '0px'
'borderLeft': '0px rgb(0, 0, 0)'
'border-left': '0px rgb(0, 0, 0)'
'borderLeftColor': 'rgb(0, 0, 0)'