mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-22 10:19:20 +00:00
LibWeb: Implement text-wrap-style
CSS property
This commit is contained in:
parent
7d99a92135
commit
9ba74316d2
Notes:
github-actions[bot]
2025-06-04 11:49:41 +00:00
Author: https://github.com/Calme1709
Commit: 9ba74316d2
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/4943
Reviewed-by: https://github.com/AtkinsSJ ✅
14 changed files with 140 additions and 5 deletions
|
@ -621,6 +621,12 @@
|
|||
"wrap",
|
||||
"nowrap"
|
||||
],
|
||||
"text-wrap-style": [
|
||||
"auto",
|
||||
"balance",
|
||||
"stable",
|
||||
"pretty"
|
||||
],
|
||||
"touch-action": [
|
||||
"auto",
|
||||
"manipulation",
|
||||
|
|
|
@ -90,6 +90,7 @@
|
|||
"back",
|
||||
"background",
|
||||
"backwards",
|
||||
"balance",
|
||||
"baseline",
|
||||
"bevel",
|
||||
"bidi-override",
|
||||
|
@ -384,6 +385,7 @@
|
|||
"preserve",
|
||||
"preserve-breaks",
|
||||
"preserve-spaces",
|
||||
"pretty",
|
||||
"progress",
|
||||
"progress-bar",
|
||||
"progressive",
|
||||
|
|
|
@ -2951,6 +2951,14 @@
|
|||
"text-wrap-mode"
|
||||
]
|
||||
},
|
||||
"text-wrap-style": {
|
||||
"animation-type": "discrete",
|
||||
"inherited": true,
|
||||
"initial": "auto",
|
||||
"valid-types": [
|
||||
"text-wrap-style"
|
||||
]
|
||||
},
|
||||
"top": {
|
||||
"animation-type": "by-computed-value",
|
||||
"inherited": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue