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,19 @@
a {
border-image-source: initial;
}
b {
border-image-source: inherit;
}
c {
border-image-source: unset;
}
d {
border-image-source: none;
}
e {
border-image-source: linear-gradient(yellow, blue);
}