forked from AuroraMiddleware/gtk
1258fcaaf4
This property needs to be treated as flags, not as enum, since it should be possible to specify more than one value, e.g. text-decoration-line: underline overline; Tests included. Fixes: #3621
24 lines
222 B
CSS
24 lines
222 B
CSS
a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
b {
|
|
text-decoration: wavy;
|
|
}
|
|
|
|
c {
|
|
text-decoration: red;
|
|
}
|
|
|
|
d {
|
|
text-decoration: red wavy;
|
|
}
|
|
|
|
e {
|
|
text-decoration: none;
|
|
}
|
|
|
|
f {
|
|
text-decoration: red underline wavy overline;
|
|
}
|