gtk/testsuite/css/parser/background-origin.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
295 B
CSS

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