LibWeb: Implement text-wrap-style CSS property

This commit is contained in:
Callum Law 2025-05-31 20:31:07 +12:00 committed by Sam Atkins
commit 9ba74316d2
Notes: github-actions[bot] 2025-06-04 11:49:41 +00:00
14 changed files with 140 additions and 5 deletions

View file

@ -621,6 +621,12 @@
"wrap",
"nowrap"
],
"text-wrap-style": [
"auto",
"balance",
"stable",
"pretty"
],
"touch-action": [
"auto",
"manipulation",

View file

@ -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",

View file

@ -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,