summaryrefslogtreecommitdiff
path: root/testsuite/css/parser/background-image.ref.css
blob: 5f9b3f61f3fdc79a2f12590624b0160e81ef2d6b (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
a {
  background-image: initial;
}

b {
  background-image: inherit;
}

c {
  background-image: unset;
}

d {
  background-image: none;
}

e {
  background-image: none, none;
}

f {
  background-image: none /* FIXME */;
}

g {
  background-image: linear-gradient(45deg, rgb(255,0,0) 10%, rgb(0,128,0) 20px);
}

h {
  background-image: linear-gradient(to top, rgb(0,0,255), rgb(0,0,0));
}

i {
  background-image: linear-gradient(to bottom left, rgb(0,0,255), rgb(0,0,0));
}

j {
  background-image: linear-gradient(rgb(255,255,0), rgb(0,0,255));
}

k {
  background-image: repeating-linear-gradient(45deg, rgb(255,0,0) 10%, rgb(0,128,0) 20px);
}

l {
  background-image: repeating-linear-gradient(to top, rgb(0,0,255), rgb(0,0,0));
}

m {
  background-image: repeating-linear-gradient(to bottom left, rgb(0,0,255), rgb(0,0,0));
}

n {
  background-image: repeating-linear-gradient(rgb(255,255,0), rgb(0,0,255));
}

o {
  background-image: cross-fade(40% linear-gradient(rgb(0,0,255), rgb(0,0,0)), linear-gradient(rgb(0,0,0), rgb(255,0,0)));
}

p {
  background-image: cross-fade(linear-gradient(rgb(0,0,255), rgb(0,0,0)), linear-gradient(rgb(0,0,0), rgb(255,0,0)));
}

q {
  background-image: cross-fade(40% linear-gradient(rgb(0,0,255), rgb(0,0,0)));
}

r {
  background-image: -gtk-icontheme("object-select-symbolic");
}

s {
  background-image: -gtk-scaled(-gtk-icontheme("object-select-symbolic"),linear-gradient(rgb(255,255,0), rgb(0,0,255)));
}