LibWeb: Add border-*-radius logical properties

This commit is contained in:
Tim Ledbetter 2025-06-30 20:33:17 +01:00 committed by Andreas Kling
commit 5b522c096e
Notes: github-actions[bot] 2025-07-01 09:17:45 +00:00
9 changed files with 215 additions and 9 deletions

View file

@ -103,6 +103,8 @@ All properties associated with getComputedStyle(document.body):
"border-bottom-right-radius",
"border-bottom-style",
"border-bottom-width",
"border-end-end-radius",
"border-end-start-radius",
"border-inline-end-color",
"border-inline-end-style",
"border-inline-end-width",
@ -115,6 +117,8 @@ All properties associated with getComputedStyle(document.body):
"border-right-color",
"border-right-style",
"border-right-width",
"border-start-end-radius",
"border-start-start-radius",
"border-top-color",
"border-top-left-radius",
"border-top-right-radius",

View file

@ -239,6 +239,10 @@ All supported properties and their default values exposed from CSSStylePropertie
'border-collapse': 'separate'
'borderColor': 'rgb(0, 0, 0)'
'border-color': 'rgb(0, 0, 0)'
'borderEndEndRadius': '0px'
'border-end-end-radius': '0px'
'borderEndStartRadius': '0px'
'border-end-start-radius': '0px'
'borderInlineColor': 'rgb(0, 0, 0)'
'border-inline-color': 'rgb(0, 0, 0)'
'borderInlineEnd': '0px rgb(0, 0, 0)'
@ -281,6 +285,10 @@ All supported properties and their default values exposed from CSSStylePropertie
'border-right-width': '0px'
'borderSpacing': '0px'
'border-spacing': '0px'
'borderStartEndRadius': '0px'
'border-start-end-radius': '0px'
'borderStartStartRadius': '0px'
'border-start-start-radius': '0px'
'borderStyle': 'none'
'border-style': 'none'
'borderTop': '0px rgb(0, 0, 0)'

View file

@ -101,6 +101,8 @@ border-bottom-left-radius: 0px
border-bottom-right-radius: 0px
border-bottom-style: none
border-bottom-width: 0px
border-end-end-radius: 0px
border-end-start-radius: 0px
border-inline-end-color: rgb(0, 0, 0)
border-inline-end-style: none
border-inline-end-width: 0px
@ -113,6 +115,8 @@ border-left-width: 0px
border-right-color: rgb(0, 0, 0)
border-right-style: none
border-right-width: 0px
border-start-end-radius: 0px
border-start-start-radius: 0px
border-top-color: rgb(0, 0, 0)
border-top-left-radius: 0px
border-top-right-radius: 0px
@ -154,7 +158,7 @@ grid-row-start: auto
grid-template-areas: none
grid-template-columns: none
grid-template-rows: none
height: 2340px
height: 2400px
inline-size: 784px
inset-block-end: auto
inset-block-start: auto