-
-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathbasic.expect.css
66 lines (56 loc) · 1015 Bytes
/
basic.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
59
60
61
62
63
64
65
66
.basic {
order: calc(1 + (2 * 2));
order: calc(1 + calc(2 * 2));
}
.mixed-casing {
order: calc(1 + (2 * 2));
order: calc(1 + cAlC(2 * 2));
}
.multi-line {
order: calc(1 +
(2 * 2)
);
order: calc(1 +
calc(2 * 2)
);
}
.multiple-nested {
order: calc(2 + (2 * 2) + (2 * 2));
order: calc(2 + calc(2 * 2) + calc(2 * 2));
}
.triple-nested {
order: calc(3 + (2 * (2 * 2)));
order: calc(3 + calc(2 * calc(2 * 2)));
}
.triple-nested-in-other-func {
order: var(--foo, calc(4 + (2 * (2 * 2))));
order: var(--foo, calc(4 + calc(2 * calc(2 * 2))));
}
.complex {
order: calc(5 + (2 * (
2 * var(
--foo,
calc(6 + (2 * (2 * 2)))))
)
);
order: calc(5 + calc(2 * calc(
2 * var(
--foo,
calc(6 + calc(2 * calc(2 * 2)))))
)
);
}
.ignore {
order: calc(1 + var(--foo, calc(2 * 2)));
}
.custom-props {
--order: calc(1 + calc(2 * 2));
}
.manual_fallback {
width: 10px;
width: calc(10px + calc(2px * 2));
}
to-clone {
width: calc(10px + (2px * 2));
width: calc(10px + calc(2px * 2));
}