summaryrefslogtreecommitdiff
path: root/tests/reftests/background-repeat.css
blob: 4b51e1f9b3952ac89c183e1bcfcfa36ad0aa59f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
* {
  engine: none;
  background-image: none;
  padding: 0;
  border-radius: 0;
  border-width: 0;
  border-style: none;
  border-image: none;
  border-image-width: 0;
  background-color: rgba(0,0,0,0);
}

#no-repeat {
  background-image: url("border-image-ball-red.png");
  background-repeat: no-repeat;
}

#repeat {
  background-image: url("border-image-ball-green.png");
  background-repeat: repeat;
}

#default {
  background-image: url("green-20x20.png");
}

#default-ref {
  background-image: none;
  background-color: green;
}