mirror of
https://github.com/RGBCube/serenity
synced 2025-06-01 09:28:13 +00:00
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:
parent
5348c67ba4
commit
69aac6ecd7
6 changed files with 57 additions and 0 deletions
|
@ -233,6 +233,14 @@ enum class TextDecorationLine {
|
|||
Blink,
|
||||
};
|
||||
|
||||
enum class TextDecorationStyle {
|
||||
Solid,
|
||||
Double,
|
||||
Dotted,
|
||||
Dashed,
|
||||
Wavy,
|
||||
};
|
||||
|
||||
enum class TextTransform {
|
||||
None,
|
||||
Capitalize,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue