mirror of
https://github.com/swc-project/swc.git
synced 2024-12-26 07:02:28 +03:00
16138 lines
425 KiB
Plaintext
16138 lines
425 KiB
Plaintext
|
||
x Stylesheet
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | ,-> :root {
|
||
2 | | font-size: calc(100vw / 35);
|
||
3 | | }
|
||
4 | |
|
||
5 | | div {
|
||
6 | | --width: calc(10% + 30px);
|
||
7 | |
|
||
8 | | width: calc(0px);
|
||
9 | | line-height: calc(0);
|
||
10 | | line-height: calc(2 + 3 * 4);
|
||
11 | | line-height: calc((2 + 3) * 4);
|
||
12 | | line-height: calc(-5 * 0);
|
||
13 | | width: calc((100px + 100px));
|
||
14 | | width: calc( ( 100px + 100px ) );
|
||
15 | | width: calc( 100px + 100px );
|
||
16 | | width: calc(500px + 50%);
|
||
17 | | width: calc(10% + 20%);
|
||
18 | | width: calc(2pc + 3pt);
|
||
19 | | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
20 | |
|
||
21 | | width: calc(calc(50px));
|
||
22 | | width: calc(calc(60%) - 20px);
|
||
23 | | width: calc(calc(3 * 25%));
|
||
24 | | width: calc(2 * var(--width));
|
||
25 | | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
26 | | width: calc(infinity);
|
||
27 | | width: calc(InFiNiTy);
|
||
28 | | width: calc(-InFiNiTy);
|
||
29 | | width: calc(NaN);
|
||
30 | | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
31 | | }
|
||
32 | |
|
||
33 | | .bar {
|
||
34 | | font-size: calc(1rem * pow(1.5, -1));
|
||
35 | | font-size: calc(1rem * pow(1.5, 0));
|
||
36 | | font-size: calc(1rem * pow(1.5, 1));
|
||
37 | | font-size: calc(1rem * pow(1.5, 2));
|
||
38 | | font-size: calc(1rem * pow(1.5, 3));
|
||
39 | | font-size: calc(1rem * pow(1.5, 4));
|
||
40 | | }
|
||
41 | |
|
||
42 | | .fade {
|
||
43 | | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
44 | | }
|
||
45 | |
|
||
46 | | div {
|
||
47 | | /*height: -webkit-calc(9/16 * 100%)!important;*/
|
||
48 | | /*width: -moz-calc((50px - 50%)*2);*/
|
||
49 | | }
|
||
50 | | div { width: calc(100% / 4); }
|
||
51 | | div { margin-top: calc(-120% - 4px); }
|
||
52 | | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
53 | |
|
||
54 | | .fade {
|
||
55 | | background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | | white calc(100% - 20px), silver 100%);
|
||
57 | | }
|
||
58 | |
|
||
59 | | .type {
|
||
60 | | /* Set font-size to 10x the average of vw and vh,
|
||
61 | | but don’t let it go below 12px. */
|
||
62 | | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
63 | | }
|
||
64 | |
|
||
65 | | .type {
|
||
66 | | /* Force the font-size to stay between 12px and 100px */
|
||
67 | | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
68 | | }
|
||
69 | |
|
||
70 | | .more {
|
||
71 | | width: mod(18px, 5px);
|
||
72 | | transform: rotate(mod(-140deg, -90deg));
|
||
73 | | transform: rotate(atan2(1, -1));
|
||
74 | | transform: rotate(tan(90deg));
|
||
75 | | transform: rotate(atan(tan(90deg)));
|
||
76 | | font-size: hypot(2em);
|
||
77 | | font-size: hypot(-2em);
|
||
78 | | font-size: hypot(30px, 40px);
|
||
79 | | background-position: sign(10%);
|
||
80 | | width: calc(pow(e, pi) - pi);
|
||
81 | | width: min(pi, 5, e);
|
||
82 | | width: log(5);
|
||
83 | | width: log(5, 5);
|
||
84 | | width: round(var(--width), 50px);
|
||
85 | | width: round(nearest, var(--width), 50px);
|
||
86 | | width: round(up, var(--width), 50px);
|
||
87 | | width: round(down, var(--width), 50px);
|
||
88 | | width: round(to-zero, var(--width), 50px);
|
||
89 | | }
|
||
90 | |
|
||
91 | | .min-max {
|
||
92 | | width: min(10px, 20px, 40px, 100px);
|
||
93 | | width: max(10px, 20px, 40px, 100px);
|
||
94 | | width: min( 10px , 20px , 40px , 100px );
|
||
95 | | }
|
||
96 | |
|
||
97 | | .rem {
|
||
98 | | width: rem(-18px, 5px);
|
||
99 | | }
|
||
100 | |
|
||
101 | | .sin {
|
||
102 | | transform: rotate(sin(45deg));
|
||
103 | | transform: rotate(sin(3.14159 / 4));
|
||
104 | | }
|
||
105 | |
|
||
106 | | .cos {
|
||
107 | | transform: rotate(cos(45deg));
|
||
108 | | transform: rotate(cos(3.14159 / 4));
|
||
109 | | }
|
||
110 | |
|
||
111 | | .asin {
|
||
112 | | transform: rotate(asin(45deg));
|
||
113 | | transform: rotate(asin(pi / 4));
|
||
114 | | }
|
||
115 | |
|
||
116 | | .acos {
|
||
117 | | transform: rotate(acos(45deg));
|
||
118 | | transform: rotate(acos(pi / 4));
|
||
119 | | }
|
||
120 | |
|
||
121 | | .atan {
|
||
122 | | transform: rotate(atan(1 / -1));
|
||
123 | | }
|
||
124 | |
|
||
125 | | .atan2 {
|
||
126 | | transform: rotate(atan2(1, -1));
|
||
127 | | }
|
||
128 | |
|
||
129 | | .sqrt {
|
||
130 | | size: sqrt(250);
|
||
131 | | }
|
||
132 | |
|
||
133 | | .exp {
|
||
134 | | size: exp(250 * 2);
|
||
135 | | }
|
||
136 | |
|
||
137 | | .abs {
|
||
138 | | background-position: calc(10% * abs(-10%));
|
||
139 | | }
|
||
140 | |
|
||
141 | | .sign {
|
||
142 | | background-position: sign(10%);
|
||
143 | | background-position: sign(10% * 2);
|
||
144 | | background-position: sign( 10% * 2 );
|
||
145 | | background-position: sign(10%*2);
|
||
146 | | background-position: sign( 10 + 10 );
|
||
147 | | background-position: sign( 10% );
|
||
148 | | width: calc( ( 100px + 100px ) * 2 );
|
||
149 | `-> }
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | ,-> :root {
|
||
2 | | font-size: calc(100vw / 35);
|
||
3 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | ,-> :root {
|
||
2 | | font-size: calc(100vw / 35);
|
||
3 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x PseudoClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | :root {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:1:1]
|
||
1 | ,-> :root {
|
||
2 | | font-size: calc(100vw / 35);
|
||
3 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:2:5]
|
||
2 | font-size: calc(100vw / 35);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | ,-> div {
|
||
6 | | --width: calc(10% + 30px);
|
||
7 | |
|
||
8 | | width: calc(0px);
|
||
9 | | line-height: calc(0);
|
||
10 | | line-height: calc(2 + 3 * 4);
|
||
11 | | line-height: calc((2 + 3) * 4);
|
||
12 | | line-height: calc(-5 * 0);
|
||
13 | | width: calc((100px + 100px));
|
||
14 | | width: calc( ( 100px + 100px ) );
|
||
15 | | width: calc( 100px + 100px );
|
||
16 | | width: calc(500px + 50%);
|
||
17 | | width: calc(10% + 20%);
|
||
18 | | width: calc(2pc + 3pt);
|
||
19 | | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
20 | |
|
||
21 | | width: calc(calc(50px));
|
||
22 | | width: calc(calc(60%) - 20px);
|
||
23 | | width: calc(calc(3 * 25%));
|
||
24 | | width: calc(2 * var(--width));
|
||
25 | | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
26 | | width: calc(infinity);
|
||
27 | | width: calc(InFiNiTy);
|
||
28 | | width: calc(-InFiNiTy);
|
||
29 | | width: calc(NaN);
|
||
30 | | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
31 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | ,-> div {
|
||
6 | | --width: calc(10% + 30px);
|
||
7 | |
|
||
8 | | width: calc(0px);
|
||
9 | | line-height: calc(0);
|
||
10 | | line-height: calc(2 + 3 * 4);
|
||
11 | | line-height: calc((2 + 3) * 4);
|
||
12 | | line-height: calc(-5 * 0);
|
||
13 | | width: calc((100px + 100px));
|
||
14 | | width: calc( ( 100px + 100px ) );
|
||
15 | | width: calc( 100px + 100px );
|
||
16 | | width: calc(500px + 50%);
|
||
17 | | width: calc(10% + 20%);
|
||
18 | | width: calc(2pc + 3pt);
|
||
19 | | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
20 | |
|
||
21 | | width: calc(calc(50px));
|
||
22 | | width: calc(calc(60%) - 20px);
|
||
23 | | width: calc(calc(3 * 25%));
|
||
24 | | width: calc(2 * var(--width));
|
||
25 | | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
26 | | width: calc(infinity);
|
||
27 | | width: calc(InFiNiTy);
|
||
28 | | width: calc(-InFiNiTy);
|
||
29 | | width: calc(NaN);
|
||
30 | | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
31 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x TypeSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x TagNameSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x WqName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:5:1]
|
||
5 | ,-> div {
|
||
6 | | --width: calc(10% + 30px);
|
||
7 | |
|
||
8 | | width: calc(0px);
|
||
9 | | line-height: calc(0);
|
||
10 | | line-height: calc(2 + 3 * 4);
|
||
11 | | line-height: calc((2 + 3) * 4);
|
||
12 | | line-height: calc(-5 * 0);
|
||
13 | | width: calc((100px + 100px));
|
||
14 | | width: calc( ( 100px + 100px ) );
|
||
15 | | width: calc( 100px + 100px );
|
||
16 | | width: calc(500px + 50%);
|
||
17 | | width: calc(10% + 20%);
|
||
18 | | width: calc(2pc + 3pt);
|
||
19 | | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
20 | |
|
||
21 | | width: calc(calc(50px));
|
||
22 | | width: calc(calc(60%) - 20px);
|
||
23 | | width: calc(calc(3 * 25%));
|
||
24 | | width: calc(2 * var(--width));
|
||
25 | | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
26 | | width: calc(infinity);
|
||
27 | | width: calc(InFiNiTy);
|
||
28 | | width: calc(-InFiNiTy);
|
||
29 | | width: calc(NaN);
|
||
30 | | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
31 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Function { value: Atom('calc' type=inline), raw: Atom('calc' type=inline) }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage { value: 10.0, raw: Atom('10' type=inline) }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x WhiteSpace { value: Atom(' ' type=inline) }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x Delim { value: '+' }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x WhiteSpace { value: Atom(' ' type=inline) }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension { value: 30.0, raw_value: Atom('30' type=inline), unit: Atom('px' type=inline), raw_unit: Atom('px' type=inline), type_flag: Integer }
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x RParen
|
||
,-[$DIR/tests/fixture/function/calc/input.css:6:5]
|
||
6 | --width: calc(10% + 30px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:8:5]
|
||
8 | width: calc(0px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:9:5]
|
||
9 | line-height: calc(0);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:10:5]
|
||
10 | line-height: calc(2 + 3 * 4);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:11:5]
|
||
11 | line-height: calc((2 + 3) * 4);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:12:5]
|
||
12 | line-height: calc(-5 * 0);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:13:5]
|
||
13 | width: calc((100px + 100px));
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:14:5]
|
||
14 | width: calc( ( 100px + 100px ) );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:15:5]
|
||
15 | width: calc( 100px + 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:16:5]
|
||
16 | width: calc(500px + 50%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:17:5]
|
||
17 | width: calc(10% + 20%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:18:5]
|
||
18 | width: calc(2pc + 3pt);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:19:5]
|
||
19 | width: calc(100% / 3 - 2 * 1em - 2 * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:21:5]
|
||
21 | width: calc(calc(50px));
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:22:5]
|
||
22 | width: calc(calc(60%) - 20px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:23:5]
|
||
23 | width: calc(calc(3 * 25%));
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:24:5]
|
||
24 | width: calc(2 * var(--width));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:25:5]
|
||
25 | width: calc(pow(pow(30px / 1px, 3), 1/3) * 1px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:26:5]
|
||
26 | width: calc(infinity);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:27:5]
|
||
27 | width: calc(InFiNiTy);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:28:5]
|
||
28 | width: calc(-InFiNiTy);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:29:5]
|
||
29 | width: calc(NaN);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:30:5]
|
||
30 | width: calc((1 * 2) * (5px + 20em / 2) - 80% / (3 - 1) + 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | ,-> .bar {
|
||
34 | | font-size: calc(1rem * pow(1.5, -1));
|
||
35 | | font-size: calc(1rem * pow(1.5, 0));
|
||
36 | | font-size: calc(1rem * pow(1.5, 1));
|
||
37 | | font-size: calc(1rem * pow(1.5, 2));
|
||
38 | | font-size: calc(1rem * pow(1.5, 3));
|
||
39 | | font-size: calc(1rem * pow(1.5, 4));
|
||
40 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | ,-> .bar {
|
||
34 | | font-size: calc(1rem * pow(1.5, -1));
|
||
35 | | font-size: calc(1rem * pow(1.5, 0));
|
||
36 | | font-size: calc(1rem * pow(1.5, 1));
|
||
37 | | font-size: calc(1rem * pow(1.5, 2));
|
||
38 | | font-size: calc(1rem * pow(1.5, 3));
|
||
39 | | font-size: calc(1rem * pow(1.5, 4));
|
||
40 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | .bar {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:33:1]
|
||
33 | ,-> .bar {
|
||
34 | | font-size: calc(1rem * pow(1.5, -1));
|
||
35 | | font-size: calc(1rem * pow(1.5, 0));
|
||
36 | | font-size: calc(1rem * pow(1.5, 1));
|
||
37 | | font-size: calc(1rem * pow(1.5, 2));
|
||
38 | | font-size: calc(1rem * pow(1.5, 3));
|
||
39 | | font-size: calc(1rem * pow(1.5, 4));
|
||
40 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:34:5]
|
||
34 | font-size: calc(1rem * pow(1.5, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:35:5]
|
||
35 | font-size: calc(1rem * pow(1.5, 0));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:36:5]
|
||
36 | font-size: calc(1rem * pow(1.5, 1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:37:5]
|
||
37 | font-size: calc(1rem * pow(1.5, 2));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:38:5]
|
||
38 | font-size: calc(1rem * pow(1.5, 3));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:39:5]
|
||
39 | font-size: calc(1rem * pow(1.5, 4));
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | ,-> .fade {
|
||
43 | | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
44 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | ,-> .fade {
|
||
43 | | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
44 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | .fade {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:42:1]
|
||
42 | ,-> .fade {
|
||
43 | | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
44 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:43:5]
|
||
43 | background-image: linear-gradient(silver 0%, white 20px, white calc(100% - 20px), silver 100%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | ,-> div {
|
||
47 | | /*height: -webkit-calc(9/16 * 100%)!important;*/
|
||
48 | | /*width: -moz-calc((50px - 50%)*2);*/
|
||
49 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | ,-> div {
|
||
47 | | /*height: -webkit-calc(9/16 * 100%)!important;*/
|
||
48 | | /*width: -moz-calc((50px - 50%)*2);*/
|
||
49 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x TypeSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x TagNameSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x WqName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | div {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:46:1]
|
||
46 | ,-> div {
|
||
47 | | /*height: -webkit-calc(9/16 * 100%)!important;*/
|
||
48 | | /*width: -moz-calc((50px - 50%)*2);*/
|
||
49 | `-> }
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TypeSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TagNameSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x WqName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:50:1]
|
||
50 | div { width: calc(100% / 4); }
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TypeSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TagNameSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x WqName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:51:1]
|
||
51 | div { margin-top: calc(-120% - 4px); }
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TypeSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x TagNameSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x WqName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:52:1]
|
||
52 | div { width: calc(50% - ( ( 4% ) * 0.5 ) ); }
|
||
: ^^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | ,-> .fade {
|
||
55 | | background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | | white calc(100% - 20px), silver 100%);
|
||
57 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | ,-> .fade {
|
||
55 | | background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | | white calc(100% - 20px), silver 100%);
|
||
57 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | .fade {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:54:1]
|
||
54 | ,-> .fade {
|
||
55 | | background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | | white calc(100% - 20px), silver 100%);
|
||
57 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | ,-> background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | `-> white calc(100% - 20px), silver 100%);
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | ,-> background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | `-> white calc(100% - 20px), silver 100%);
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | ,-> background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | `-> white calc(100% - 20px), silver 100%);
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | ,-> background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | `-> white calc(100% - 20px), silver 100%);
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | ,-> background-image: linear-gradient(silver 0%, white 20px,
|
||
56 | `-> white calc(100% - 20px), silver 100%);
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:55:5]
|
||
55 | background-image: linear-gradient(silver 0%, white 20px,
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:56:5]
|
||
56 | white calc(100% - 20px), silver 100%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | ,-> .type {
|
||
60 | | /* Set font-size to 10x the average of vw and vh,
|
||
61 | | but don’t let it go below 12px. */
|
||
62 | | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
63 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | ,-> .type {
|
||
60 | | /* Set font-size to 10x the average of vw and vh,
|
||
61 | | but don’t let it go below 12px. */
|
||
62 | | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
63 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | .type {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:59:1]
|
||
59 | ,-> .type {
|
||
60 | | /* Set font-size to 10x the average of vw and vh,
|
||
61 | | but don’t let it go below 12px. */
|
||
62 | | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
63 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:62:5]
|
||
62 | font-size: max(10 * (1vw + 1vh) / 2, 12px);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | ,-> .type {
|
||
66 | | /* Force the font-size to stay between 12px and 100px */
|
||
67 | | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
68 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | ,-> .type {
|
||
66 | | /* Force the font-size to stay between 12px and 100px */
|
||
67 | | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
68 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | .type {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:65:1]
|
||
65 | ,-> .type {
|
||
66 | | /* Force the font-size to stay between 12px and 100px */
|
||
67 | | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
68 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:67:5]
|
||
67 | font-size: clamp(12px, 10 * (1vw + 1vh) / 2, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | ,-> .more {
|
||
71 | | width: mod(18px, 5px);
|
||
72 | | transform: rotate(mod(-140deg, -90deg));
|
||
73 | | transform: rotate(atan2(1, -1));
|
||
74 | | transform: rotate(tan(90deg));
|
||
75 | | transform: rotate(atan(tan(90deg)));
|
||
76 | | font-size: hypot(2em);
|
||
77 | | font-size: hypot(-2em);
|
||
78 | | font-size: hypot(30px, 40px);
|
||
79 | | background-position: sign(10%);
|
||
80 | | width: calc(pow(e, pi) - pi);
|
||
81 | | width: min(pi, 5, e);
|
||
82 | | width: log(5);
|
||
83 | | width: log(5, 5);
|
||
84 | | width: round(var(--width), 50px);
|
||
85 | | width: round(nearest, var(--width), 50px);
|
||
86 | | width: round(up, var(--width), 50px);
|
||
87 | | width: round(down, var(--width), 50px);
|
||
88 | | width: round(to-zero, var(--width), 50px);
|
||
89 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | ,-> .more {
|
||
71 | | width: mod(18px, 5px);
|
||
72 | | transform: rotate(mod(-140deg, -90deg));
|
||
73 | | transform: rotate(atan2(1, -1));
|
||
74 | | transform: rotate(tan(90deg));
|
||
75 | | transform: rotate(atan(tan(90deg)));
|
||
76 | | font-size: hypot(2em);
|
||
77 | | font-size: hypot(-2em);
|
||
78 | | font-size: hypot(30px, 40px);
|
||
79 | | background-position: sign(10%);
|
||
80 | | width: calc(pow(e, pi) - pi);
|
||
81 | | width: min(pi, 5, e);
|
||
82 | | width: log(5);
|
||
83 | | width: log(5, 5);
|
||
84 | | width: round(var(--width), 50px);
|
||
85 | | width: round(nearest, var(--width), 50px);
|
||
86 | | width: round(up, var(--width), 50px);
|
||
87 | | width: round(down, var(--width), 50px);
|
||
88 | | width: round(to-zero, var(--width), 50px);
|
||
89 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | .more {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:70:1]
|
||
70 | ,-> .more {
|
||
71 | | width: mod(18px, 5px);
|
||
72 | | transform: rotate(mod(-140deg, -90deg));
|
||
73 | | transform: rotate(atan2(1, -1));
|
||
74 | | transform: rotate(tan(90deg));
|
||
75 | | transform: rotate(atan(tan(90deg)));
|
||
76 | | font-size: hypot(2em);
|
||
77 | | font-size: hypot(-2em);
|
||
78 | | font-size: hypot(30px, 40px);
|
||
79 | | background-position: sign(10%);
|
||
80 | | width: calc(pow(e, pi) - pi);
|
||
81 | | width: min(pi, 5, e);
|
||
82 | | width: log(5);
|
||
83 | | width: log(5, 5);
|
||
84 | | width: round(var(--width), 50px);
|
||
85 | | width: round(nearest, var(--width), 50px);
|
||
86 | | width: round(up, var(--width), 50px);
|
||
87 | | width: round(down, var(--width), 50px);
|
||
88 | | width: round(to-zero, var(--width), 50px);
|
||
89 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:71:5]
|
||
71 | width: mod(18px, 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:72:5]
|
||
72 | transform: rotate(mod(-140deg, -90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:73:5]
|
||
73 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:74:5]
|
||
74 | transform: rotate(tan(90deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:75:5]
|
||
75 | transform: rotate(atan(tan(90deg)));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:76:5]
|
||
76 | font-size: hypot(2em);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:77:5]
|
||
77 | font-size: hypot(-2em);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:78:5]
|
||
78 | font-size: hypot(30px, 40px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:79:5]
|
||
79 | background-position: sign(10%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:80:5]
|
||
80 | width: calc(pow(e, pi) - pi);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:81:5]
|
||
81 | width: min(pi, 5, e);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:82:5]
|
||
82 | width: log(5);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:83:5]
|
||
83 | width: log(5, 5);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:84:5]
|
||
84 | width: round(var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:85:5]
|
||
85 | width: round(nearest, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:86:5]
|
||
86 | width: round(up, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:87:5]
|
||
87 | width: round(down, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x DashedIdent
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:88:5]
|
||
88 | width: round(to-zero, var(--width), 50px);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | ,-> .min-max {
|
||
92 | | width: min(10px, 20px, 40px, 100px);
|
||
93 | | width: max(10px, 20px, 40px, 100px);
|
||
94 | | width: min( 10px , 20px , 40px , 100px );
|
||
95 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | ,-> .min-max {
|
||
92 | | width: min(10px, 20px, 40px, 100px);
|
||
93 | | width: max(10px, 20px, 40px, 100px);
|
||
94 | | width: min( 10px , 20px , 40px , 100px );
|
||
95 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | .min-max {
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:91:1]
|
||
91 | ,-> .min-max {
|
||
92 | | width: min(10px, 20px, 40px, 100px);
|
||
93 | | width: max(10px, 20px, 40px, 100px);
|
||
94 | | width: min( 10px , 20px , 40px , 100px );
|
||
95 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:92:5]
|
||
92 | width: min(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:93:5]
|
||
93 | width: max(10px, 20px, 40px, 100px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:94:5]
|
||
94 | width: min( 10px , 20px , 40px , 100px );
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | ,-> .rem {
|
||
98 | | width: rem(-18px, 5px);
|
||
99 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | ,-> .rem {
|
||
98 | | width: rem(-18px, 5px);
|
||
99 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | .rem {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:97:1]
|
||
97 | ,-> .rem {
|
||
98 | | width: rem(-18px, 5px);
|
||
99 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:98:5]
|
||
98 | width: rem(-18px, 5px);
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | ,-> .sin {
|
||
102 | | transform: rotate(sin(45deg));
|
||
103 | | transform: rotate(sin(3.14159 / 4));
|
||
104 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | ,-> .sin {
|
||
102 | | transform: rotate(sin(45deg));
|
||
103 | | transform: rotate(sin(3.14159 / 4));
|
||
104 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | .sin {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:101:1]
|
||
101 | ,-> .sin {
|
||
102 | | transform: rotate(sin(45deg));
|
||
103 | | transform: rotate(sin(3.14159 / 4));
|
||
104 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:102:5]
|
||
102 | transform: rotate(sin(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:103:5]
|
||
103 | transform: rotate(sin(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | ,-> .cos {
|
||
107 | | transform: rotate(cos(45deg));
|
||
108 | | transform: rotate(cos(3.14159 / 4));
|
||
109 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | ,-> .cos {
|
||
107 | | transform: rotate(cos(45deg));
|
||
108 | | transform: rotate(cos(3.14159 / 4));
|
||
109 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | .cos {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:106:1]
|
||
106 | ,-> .cos {
|
||
107 | | transform: rotate(cos(45deg));
|
||
108 | | transform: rotate(cos(3.14159 / 4));
|
||
109 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:107:5]
|
||
107 | transform: rotate(cos(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:108:5]
|
||
108 | transform: rotate(cos(3.14159 / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | ,-> .asin {
|
||
112 | | transform: rotate(asin(45deg));
|
||
113 | | transform: rotate(asin(pi / 4));
|
||
114 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | ,-> .asin {
|
||
112 | | transform: rotate(asin(45deg));
|
||
113 | | transform: rotate(asin(pi / 4));
|
||
114 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | .asin {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:111:1]
|
||
111 | ,-> .asin {
|
||
112 | | transform: rotate(asin(45deg));
|
||
113 | | transform: rotate(asin(pi / 4));
|
||
114 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:112:5]
|
||
112 | transform: rotate(asin(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:113:5]
|
||
113 | transform: rotate(asin(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | ,-> .acos {
|
||
117 | | transform: rotate(acos(45deg));
|
||
118 | | transform: rotate(acos(pi / 4));
|
||
119 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | ,-> .acos {
|
||
117 | | transform: rotate(acos(45deg));
|
||
118 | | transform: rotate(acos(pi / 4));
|
||
119 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | .acos {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:116:1]
|
||
116 | ,-> .acos {
|
||
117 | | transform: rotate(acos(45deg));
|
||
118 | | transform: rotate(acos(pi / 4));
|
||
119 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Angle
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:117:5]
|
||
117 | transform: rotate(acos(45deg));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:118:5]
|
||
118 | transform: rotate(acos(pi / 4));
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | ,-> .atan {
|
||
122 | | transform: rotate(atan(1 / -1));
|
||
123 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | ,-> .atan {
|
||
122 | | transform: rotate(atan(1 / -1));
|
||
123 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | .atan {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:121:1]
|
||
121 | ,-> .atan {
|
||
122 | | transform: rotate(atan(1 / -1));
|
||
123 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:122:5]
|
||
122 | transform: rotate(atan(1 / -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | ,-> .atan2 {
|
||
126 | | transform: rotate(atan2(1, -1));
|
||
127 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | ,-> .atan2 {
|
||
126 | | transform: rotate(atan2(1, -1));
|
||
127 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | .atan2 {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:125:1]
|
||
125 | ,-> .atan2 {
|
||
126 | | transform: rotate(atan2(1, -1));
|
||
127 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x Delimiter
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:126:5]
|
||
126 | transform: rotate(atan2(1, -1));
|
||
: ^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | ,-> .sqrt {
|
||
130 | | size: sqrt(250);
|
||
131 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | ,-> .sqrt {
|
||
130 | | size: sqrt(250);
|
||
131 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | .sqrt {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:129:1]
|
||
129 | ,-> .sqrt {
|
||
130 | | size: sqrt(250);
|
||
131 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:130:5]
|
||
130 | size: sqrt(250);
|
||
: ^^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | ,-> .exp {
|
||
134 | | size: exp(250 * 2);
|
||
135 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | ,-> .exp {
|
||
134 | | size: exp(250 * 2);
|
||
135 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | .exp {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:133:1]
|
||
133 | ,-> .exp {
|
||
134 | | size: exp(250 * 2);
|
||
135 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:134:5]
|
||
134 | size: exp(250 * 2);
|
||
: ^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | ,-> .abs {
|
||
138 | | background-position: calc(10% * abs(-10%));
|
||
139 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | ,-> .abs {
|
||
138 | | background-position: calc(10% * abs(-10%));
|
||
139 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | .abs {
|
||
: ^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:137:1]
|
||
137 | ,-> .abs {
|
||
138 | | background-position: calc(10% * abs(-10%));
|
||
139 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:138:5]
|
||
138 | background-position: calc(10% * abs(-10%));
|
||
: ^^^
|
||
`----
|
||
|
||
x Rule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | ,-> .sign {
|
||
142 | | background-position: sign(10%);
|
||
143 | | background-position: sign(10% * 2);
|
||
144 | | background-position: sign( 10% * 2 );
|
||
145 | | background-position: sign(10%*2);
|
||
146 | | background-position: sign( 10 + 10 );
|
||
147 | | background-position: sign( 10% );
|
||
148 | | width: calc( ( 100px + 100px ) * 2 );
|
||
149 | `-> }
|
||
`----
|
||
|
||
x QualifiedRule
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | ,-> .sign {
|
||
142 | | background-position: sign(10%);
|
||
143 | | background-position: sign(10% * 2);
|
||
144 | | background-position: sign( 10% * 2 );
|
||
145 | | background-position: sign(10%*2);
|
||
146 | | background-position: sign( 10 + 10 );
|
||
147 | | background-position: sign( 10% );
|
||
148 | | width: calc( ( 100px + 100px ) * 2 );
|
||
149 | `-> }
|
||
`----
|
||
|
||
x SelectorList
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComplexSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CompoundSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x SubclassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ClassSelector
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | .sign {
|
||
: ^^^^
|
||
`----
|
||
|
||
x SimpleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:141:1]
|
||
141 | ,-> .sign {
|
||
142 | | background-position: sign(10%);
|
||
143 | | background-position: sign(10% * 2);
|
||
144 | | background-position: sign( 10% * 2 );
|
||
145 | | background-position: sign(10%*2);
|
||
146 | | background-position: sign( 10 + 10 );
|
||
147 | | background-position: sign( 10% );
|
||
148 | | width: calc( ( 100px + 100px ) * 2 );
|
||
149 | `-> }
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:142:5]
|
||
142 | background-position: sign(10%);
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:143:5]
|
||
143 | background-position: sign(10% * 2);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:144:5]
|
||
144 | background-position: sign( 10% * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:145:5]
|
||
145 | background-position: sign(10%*2);
|
||
: ^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:146:5]
|
||
146 | background-position: sign( 10 + 10 );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x Percentage
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:147:5]
|
||
147 | background-position: sign( 10% );
|
||
: ^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x StyleBlock
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Declaration
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x DeclarationName
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Function
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^
|
||
`----
|
||
|
||
x ComponentValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcSum
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^^^^^^^^^^^^^^^^^^^^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcProductOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcProduct
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Dimension
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Length
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^^^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^^
|
||
`----
|
||
|
||
x Ident
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcValueOrOperator
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x CalcValue
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|
||
|
||
x Number
|
||
,-[$DIR/tests/fixture/function/calc/input.css:148:5]
|
||
148 | width: calc( ( 100px + 100px ) * 2 );
|
||
: ^
|
||
`----
|