LibWeb: Add new property 'text-decoration-style'

This patch makes the property 'text-decoration-style' known throughout
all the places in LibWeb that care.
This commit is contained in:
Tobias Christiansen 2022-01-20 20:27:55 +01:00 committed by Ali Mohammad Pur
commit 69aac6ecd7
Notes: sideshowbarker 2024-07-17 20:24:20 +09:00
6 changed files with 57 additions and 0 deletions

View file

@ -233,6 +233,14 @@ enum class TextDecorationLine {
Blink,
};
enum class TextDecorationStyle {
Solid,
Double,
Dotted,
Dashed,
Wavy,
};
enum class TextTransform {
None,
Capitalize,