gtk/testsuite/reftests/border-image-repeat.css
Benjamin Otte 542bd31d00 reftests: Fix border-image-repeat test
The new downscaling code in Cairo doesn't allow this test, so we remove
the CSS that made the border downscaled.

So the test does test less now, but it still tests the repeat modes of
border images.
2013-11-19 02:29:48 +01:00

56 lines
1.5 KiB
CSS

@import "reset-to-defaults.css";
* {
background-size: 100% 100%;
}
GtkButton {
border-image-source: url("border-image-balls.png");
border-image-slice: 20;
border-image-repeat: stretch;
border-width: 20px;
border-style: solid;
}
.stretch-stretch { border-image-repeat: stretch stretch }
.stretch-repeat { border-image-repeat: stretch repeat }
.stretch-round { border-image-repeat: stretch round }
.stretch-space { border-image-repeat: stretch space }
.repeat-stretch { border-image-repeat: repeat stretch }
.repeat-repeat { border-image-repeat: repeat repeat }
.repeat-round { border-image-repeat: repeat round }
.repeat-space { border-image-repeat: repeat space }
.round-stretch { border-image-repeat: round stretch }
.round-repeat { border-image-repeat: round repeat }
.round-round { border-image-repeat: round round }
.round-space { border-image-repeat: round space }
.space-stretch { border-image-repeat: space stretch }
.space-repeat { border-image-repeat: space repeat }
.space-round { border-image-repeat: space round }
.space-space { border-image-repeat: space space }
#red {
background-image: url("border-image-ball-red.png");
background-color: black;
}
#yellow {
background-image: url("border-image-ball-yellow.png");
background-color: black;
}
#yellow-3 {
background-image: url("border-image-3-balls-yellow.png");
background-color: black;
}
#green {
background-image: url("border-image-ball-green.png");
background-color: black;
}
#green-3 {
background-image: url("border-image-3-balls-green.png");
background-color: black;
}