-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathbasic.preserve-false.expect.css
58 lines (52 loc) · 1.03 KB
/
basic.preserve-false.expect.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
56
57
58
a {
align-content: first;
justify-content: second;
align-items: first;
justify-items: second;
align-self: first;
justify-self: second;
}
A {
align-content: first;
justify-content: second;
align-items: first;
justify-items: second;
align-self: first;
justify-self: second;
}
b {
align-content: first;
justify-content: first;
align-items: first;
justify-items: first;
align-self: first;
justify-self: first;
}
c {
align-content: var(--first);
justify-content: second;
align-items: var(--first);
justify-items: second;
align-self: var(--first);
justify-self: second;
}
d {
align-content: first;
justify-content: var(--second);
align-items: first;
justify-items: var(--second);
align-self: first;
justify-self: var(--second);
}
e {
align-content: var(--first, --fallback);
justify-content: second;
align-items: var(--first, --fallback);
justify-items: second;
align-self: var(--first, --fallback);
justify-self: second;
}
.test-unparseable-var-in-place-declaration {
align-content: var(; );
justify-content: var(; );
}