gtk/testsuite/css/parser/text-shadow.ref.css
Matthias Clasen 3b40d95581 css: Fix currentcolor serialization
According to css specs, the serialization is supposed to be
all lowercase.
2024-05-29 21:45:10 -04:00

24 lines
202 B
CSS

a {
text-shadow: initial;
}
b {
text-shadow: inherit;
}
c {
text-shadow: unset;
}
d {
text-shadow: none;
}
e {
text-shadow: 0 5em currentcolor;
}
f {
text-shadow: 5px 3mm rgb(0,0,0);
}