LibWeb: Add "text-overflow" property to code generation

The CSS property "text-overflow" as well as its valid identifiers are
added to the relevant json files for code generation
This commit is contained in:
Tobias Christiansen 2024-07-24 20:52:21 +02:00 committed by Sam Atkins
commit a8d3c077ea
Notes: github-actions[bot] 2024-08-03 09:05:47 +00:00
3 changed files with 14 additions and 0 deletions

View file

@ -369,6 +369,10 @@
"middle", "middle",
"end" "end"
], ],
"text-overflow": [
"clip",
"ellipsis"
],
"scrollbar-gutter": [ "scrollbar-gutter": [
"auto", "auto",
"stable", "stable",

View file

@ -141,6 +141,7 @@
"ease-in", "ease-in",
"ease-in-out", "ease-in-out",
"ease-out", "ease-out",
"ellipsis",
"enabled", "enabled",
"end", "end",
"evenodd", "evenodd",

View file

@ -2559,6 +2559,15 @@
"text-justify" "text-justify"
] ]
}, },
"text-overflow": {
"affects-layout": false,
"animation-type": "discrete",
"inherited": false,
"initial": "clip",
"valid-types": [
"text-overflow"
]
},
"text-shadow": { "text-shadow": {
"affects-layout": false, "affects-layout": false,
"animation-type": "custom", "animation-type": "custom",