gtk/testsuite/css/parser/background-clip.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

28 lines
281 B
CSS

a {
background-clip: initial;
}
b {
background-clip: inherit;
}
c {
background-clip: unset;
}
d {
background-clip: border-box;
}
e {
background-clip: padding-box;
}
f {
background-clip: content-box;
}
g {
background-clip: border-box, border-box, content-box;
}