gtk2/testsuite/css/parser/border-image-slice.css
Matthias Clasen a0487f0516 Add parser tests for border-image properties
This adds tests for border-image-source, border-image-repeat,
border-image-slice and border-image-width.
2015-12-22 22:29:38 -05:00

53 lines
514 B
CSS

a {
border-image-slice: initial;
}
b {
border-image-slice: inherit;
}
c {
border-image-slice: unset;
}
d {
border-image-slice: 10;
}
e {
border-image-slice: 10 11;
}
f {
border-image-slice: 10 11 12;
}
f {
border-image-slice: 10 11 12 13;
}
g {
border-image-slice: 10%;
}
h {
border-image-slice: 10% 11%;
}
i {
border-image-slice: 10% 11% 12%;
}
j {
border-image-slice: 10% 11% 12% 13%;
}
k {
border-image-slice: fill 10% 11% 12%;
}
l {
border-image-slice: 10% 11 12 fill;
}