Add parser tests for border-image properties

This adds tests for border-image-source, border-image-repeat,
border-image-slice and border-image-width.
This commit is contained in:
Matthias Clasen
2015-12-21 22:14:21 -05:00
parent d92111256f
commit a0487f0516
9 changed files with 369 additions and 0 deletions

View File

@ -0,0 +1,51 @@
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: 10% 11% 12% fill;
}
l {
border-image-slice: 10% 11 12 fill;
}