]> Pileus Git - ~andy/gtk/blob - tests/reftests/background-repeat.css
Work around a notebook tab rendering bug
[~andy/gtk] / tests / reftests / background-repeat.css
1 * {
2   engine: none;
3   background-image: none;
4   padding: 0;
5   border-radius: 0;
6   border-width: 0;
7   border-style: none;
8   border-image: none;
9   border-image-width: 0;
10   background-color: rgba(0,0,0,0);
11 }
12
13 #no-repeat {
14   background-image: url("border-image-ball-red.png");
15   background-repeat: no-repeat;
16 }
17
18 #repeat {
19   background-image: url("border-image-ball-green.png");
20   background-repeat: repeat;
21 }
22
23 #default {
24   background-image: url("green-20x20.png");
25 }
26
27 #default-ref {
28   background-image: none;
29   background-color: green;
30 }