gtk2/testsuite/css/parser/text-decoration-line.ref.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

32 lines
333 B
CSS

a {
text-decoration-line: initial;
}
b {
text-decoration-line: inherit;
}
c {
text-decoration-line: unset;
}
d {
text-decoration-line: none;
}
e {
text-decoration-line: underline;
}
f {
text-decoration-line: line-through;
}
g {
text-decoration-line: overline;
}
h {
text-decoration-line: underline overline;
}