mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-04 08:36:12 +00:00
LibWeb/CSS: Implement the empty-cells
property
This property sets whether table borders and backgrounds are painted if a given table cell has no visible content.
This commit is contained in:
parent
a0cef5a7da
commit
e0af205d69
Notes:
github-actions[bot]
2025-06-18 13:56:15 +00:00
Author: https://github.com/tcl3
Commit: e0af205d69
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5133
Reviewed-by: https://github.com/AtkinsSJ ✅
22 changed files with 253 additions and 10 deletions
|
@ -11,6 +11,7 @@ All properties associated with getComputedStyle(document.body):
|
|||
"color-scheme",
|
||||
"cursor",
|
||||
"direction",
|
||||
"empty-cells",
|
||||
"fill",
|
||||
"fill-opacity",
|
||||
"fill-rule",
|
||||
|
|
|
@ -327,6 +327,8 @@ All supported properties and their default values exposed from CSSStylePropertie
|
|||
'cy': '0px'
|
||||
'direction': 'ltr'
|
||||
'display': 'block'
|
||||
'emptyCells': 'show'
|
||||
'empty-cells': 'show'
|
||||
'fill': 'rgb(0, 0, 0)'
|
||||
'fillOpacity': '1'
|
||||
'fill-opacity': '1'
|
||||
|
|
|
@ -9,6 +9,7 @@ color: rgb(0, 0, 0)
|
|||
color-scheme: normal
|
||||
cursor: auto
|
||||
direction: ltr
|
||||
empty-cells: show
|
||||
fill: rgb(0, 0, 0)
|
||||
fill-opacity: 1
|
||||
fill-rule: nonzero
|
||||
|
@ -86,7 +87,7 @@ background-position-x: 0%
|
|||
background-position-y: 0%
|
||||
background-repeat: repeat
|
||||
background-size: auto auto
|
||||
block-size: 1320px
|
||||
block-size: 1335px
|
||||
border-block-end-color: rgb(0, 0, 0)
|
||||
border-block-end-style: none
|
||||
border-block-end-width: medium
|
||||
|
@ -151,7 +152,7 @@ grid-row-start: auto
|
|||
grid-template-areas: none
|
||||
grid-template-columns: none
|
||||
grid-template-rows: none
|
||||
height: 2295px
|
||||
height: 2310px
|
||||
inline-size: 784px
|
||||
inset-block-end: auto
|
||||
inset-block-start: auto
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue