mirror of
https://gitlab.gnome.org/GNOME/gtk.git
synced 2024-11-10 02:40:11 +00:00
a0487f0516
This adds tests for border-image-source, border-image-repeat, border-image-slice and border-image-width.
40 lines
401 B
CSS
40 lines
401 B
CSS
a {
|
|
border-image-repeat: initial;
|
|
}
|
|
|
|
b {
|
|
border-image-repeat: inherit;
|
|
}
|
|
|
|
c {
|
|
border-image-repeat: unset;
|
|
}
|
|
|
|
d {
|
|
border-image-repeat: stretch stretch;
|
|
}
|
|
|
|
e {
|
|
border-image-repeat: stretch;
|
|
}
|
|
|
|
f {
|
|
border-image-repeat: repeat;
|
|
}
|
|
|
|
g {
|
|
border-image-repeat: round;
|
|
}
|
|
|
|
h {
|
|
border-image-repeat: space;
|
|
}
|
|
|
|
i {
|
|
border-image-repeat: stretch round;
|
|
}
|
|
|
|
j {
|
|
border-image-repeat: space repeat;
|
|
}
|