mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
LibWeb: Implement dominant-baseline for SVG text
This property determines the default baseline used to align content within the given box.
This commit is contained in:
committed by
Jelle Raaijmakers
parent
90a211bf47
commit
f05bc7c0cd
Notes:
github-actions[bot]
2026-02-26 08:24:27 +00:00
Author: https://github.com/tcl3 Commit: https://github.com/LadybirdBrowser/ladybird/commit/f05bc7c0cd3 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/8173 Reviewed-by: https://github.com/gmta ✅
@@ -12,6 +12,7 @@ All properties associated with getComputedStyle(document.body):
|
||||
"color-scheme",
|
||||
"cursor",
|
||||
"direction",
|
||||
"dominant-baseline",
|
||||
"empty-cells",
|
||||
"fill",
|
||||
"fill-opacity",
|
||||
|
||||
@@ -443,6 +443,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
||||
'cy': '0px'
|
||||
'direction': 'ltr'
|
||||
'display': 'block'
|
||||
'dominantBaseline': 'auto'
|
||||
'dominant-baseline': 'auto'
|
||||
'emptyCells': 'show'
|
||||
'empty-cells': 'show'
|
||||
'fill': 'rgb(0, 0, 0)'
|
||||
|
||||
@@ -10,6 +10,7 @@ color-interpolation: srgb
|
||||
color-scheme: normal
|
||||
cursor: auto
|
||||
direction: ltr
|
||||
dominant-baseline: auto
|
||||
empty-cells: show
|
||||
fill: rgb(0, 0, 0)
|
||||
fill-opacity: 1
|
||||
@@ -102,7 +103,7 @@ background-position-x: 0%
|
||||
background-position-y: 0%
|
||||
background-repeat: repeat
|
||||
background-size: auto
|
||||
block-size: 1560px
|
||||
block-size: 1575px
|
||||
border-block-end-color: rgb(0, 0, 0)
|
||||
border-block-end-style: none
|
||||
border-block-end-width: 0px
|
||||
@@ -188,7 +189,7 @@ grid-row-start: auto
|
||||
grid-template-areas: none
|
||||
grid-template-columns: none
|
||||
grid-template-rows: none
|
||||
height: 2850px
|
||||
height: 2865px
|
||||
inline-size: 784px
|
||||
inset-block-end: auto
|
||||
inset-block-start: auto
|
||||
|
||||
Reference in New Issue
Block a user