gtk2/testsuite/css/parser/text-decoration.css
Matthias Clasen 1258fcaaf4 css: Fix text-decoration-line support
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
2021-01-26 17:53:14 -05:00

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;
}