gtk2/testsuite/css/parser/text-shadow.css
Matthias Clasen d081b309d5 Add some css parser tests
These tests exercise many allowed ways to specify various
properties.
2015-12-21 06:28:25 -05:00

24 lines
184 B
CSS

a {
text-shadow: initial;
}
b {
text-shadow: inherit;
}
c {
text-shadow: unset;
}
d {
text-shadow: none;
}
e {
text-shadow: 0 5em;
}
f {
text-shadow: 5px 3mm black;
}