gtk2/testsuite/css/parser/box-shadow.ref.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

36 lines
371 B
CSS

a {
box-shadow: initial;
}
b {
box-shadow: inherit;
}
c {
box-shadow: unset;
}
d {
box-shadow: none;
}
e {
box-shadow: 1px 2px currentColor;
}
f {
box-shadow: 1px 2px 3px currentColor;
}
g {
box-shadow: 1px 2px 3px 4px currentColor;
}
h {
box-shadow: 1px 2px rgb(255,0,0);
}
i {
box-shadow: 0 1px rgb(0,128,0) inset, 2px 3px 4px rgb(0,0,255);
}