-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathgenerated-value-cases.css
55 lines (42 loc) · 1.28 KB
/
generated-value-cases.css
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
.order-0 {
order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x) !important;
}
.order-1 {
order: var(1, image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x));
}
.order-2 {
order: var(image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x), 1);
}
.order-3 {
order: var(image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x), image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x));
}
.order-4 {
order: preimage-set(url(img/test.png) 1x, url(img/test-2x.png) 2x);
}
.order-5 {
order: pre image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x);
}
.order-6 {
order: pre,image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x);
}
.order-7 {
order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x)post;
}
.order-8 {
order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x) post;
}
.order-9 {
order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x),post;
}
/* image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x) */
:root {
--some-var: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x);
}
.content {
content: 'image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x)';
}
@supports (order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x)) {
.support {
order: image-set(url(img/test.png) 1x, url(img/test-2x.png) 2x);
}
}