swc/crates/swc_css_parser/tests/fixture/at-rule/custom-media/span.swc-stderr
2023-01-14 08:58:24 +00:00

12402 lines
350 KiB
Plaintext

x Stylesheet
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | ,-> @custom-media --modern (color), (hover);
2 | | @custom-media --modern true;
3 | | @custom-media --modern false;
4 | | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | | @custom-media --mq-b screen and (max-width: 30em);
6 | | @custom-media --not-mq-a not all and (--mq-a);
7 | | @custom-media --circular-mq-a (--circular-mq-b);
8 | | @custom-media --circular-mq-b (--circular-mq-a);
9 | | @custom-media --min (min-width: 320px);
10 | | @custom-media --max (max-width: 640px);
11 | | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | | @custom-media --\(\)-escaped (min-width: 2);
14 | | @custom-media --modern (min-width: 3), (min-width: 4);
15 | | @custom-media --screen only screen;
16 | | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | | @custom-media --md-larger4 (width >=570px);
20 | | @custom-media --md-smaller4 (width < 1000px);
21 | | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | | @custom-media --mq-b screen and (max-width: 30em);
23 | | @custom-media --not-mq-a not all and (--mq-a);
24 | | @custom-media --circular-mq-a (--circular-mq-b);
25 | | @custom-media --circular-mq-b (--circular-mq-a);
26 | | @custom-media --min (min-width: 320px);
27 | | @custom-media --max (max-width: 640px);
28 | | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | | @custom-media ------- (min-width: 320px) and (max-width: 640px);
31 | |
32 | | @media (--concat) {
33 | | body {
34 | | order: 7;
35 | | }
36 | | }
37 | |
38 | | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | | body {
40 | | order: 8;
41 | | }
42 | | }
43 | |
44 | | @media ( --mq-a ) {
45 | | body {
46 | | order: 1000;
47 | | }
48 | | }
49 | |
50 | | @media ( --mq-a ) {
51 | | body {
52 | | order: 1001;
53 | | }
54 | | }
55 | |
56 | | @media ( --mq-a ), ( --mq-a ) {
57 | | body {
58 | | order: 1002;
59 | | }
60 | | }
61 | |
62 | | @media ( --mq-a ), ( --mq-a ) {
63 | | body {
64 | | order: 1003;
65 | | }
66 | | }
67 | |
68 | | @media ( --mq-a ), ( --mq-a ) {
69 | | body {
70 | | order: 1004;
71 | | }
72 | | }
73 | |
74 | | @media (--mq-a), (--mq-a) {
75 | | body {
76 | | order: 1005;
77 | | }
78 | | }
79 | |
80 | | @media (trailer--) {
81 | | body {
82 | | order: 1006;
83 | | }
84 | | }
85 | |
86 | | @media (--min) and (--max) {
87 | | body {
88 | | order: 6;
89 | | }
90 | | }
91 | |
92 | | @media (--circular-mq-a) {
93 | | body {
94 | | order: 3;
95 | | }
96 | | }
97 | |
98 | | @media (--circular-mq-b) {
99 | | body {
100 | | order: 4;
101 | | }
102 | | }
103 | |
104 | | @media (--unresolved-mq) {
105 | | body {
106 | | order: 5;
107 | | }
108 | | }
109 | |
110 | | @media (--mq-a) {
111 | | body {
112 | | order: 1;
113 | | }
114 | | }
115 | |
116 | | @media (--mq-b) {
117 | | body {
118 | | order: 1;
119 | | }
120 | | }
121 | |
122 | | @media (--mq-a), (--mq-a) {
123 | | body {
124 | | order: 1;
125 | | }
126 | | }
127 | |
128 | | @media not all and (--mq-a) {
129 | | body {
130 | | order: 2;
131 | | }
132 | | }
133 | |
134 | | @media (--not-mq-a) {
135 | | body {
136 | | order: 1;
137 | | }
138 | | }
139 | |
140 | | @media not all and (--not-mq-a) {
141 | | body {
142 | | order: 2;
143 | | }
144 | | }
145 | |
146 | |
147 | | @media (--🧑🏾‍🎤) {
148 | | .a {
149 | | order: 1;
150 | | }
151 | | }
152 | |
153 | | @media (--\(\)-escaped) {
154 | | .a {
155 | | order: 2;
156 | | }
157 | | }
158 | |
159 | | @media (--modern) and (width > 1024px) {
160 | | .a { order: 3; }
161 | | }
162 | |
163 | | @media (--md-and-larger1) {
164 | | body {
165 | | background-color: red;
166 | | }
167 | | }
168 | |
169 | | @media (--md-and-larger2) {
170 | | body {
171 | | background-color: yellow;
172 | | }
173 | | }
174 | |
175 | | @media (--md-and-larger3) {
176 | | body {
177 | | background-color: green;
178 | | }
179 | | }
180 | |
181 | | @media (--screen) and (--md-larger4) {
182 | | body {
183 | | background-color: green;
184 | | }
185 | | }
186 | |
187 | | @media (--md-larger4) and (--md-smaller4) {
188 | | body {
189 | | background-color: green;
190 | | }
191 | `-> }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2 | @custom-media --modern true;
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2 | @custom-media --modern true;
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^^^^^^
2 | @custom-media --modern true;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^^^^^^
2 | @custom-media --modern true;
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^^^^^^^^^^
2 | @custom-media --modern true;
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^
2 | @custom-media --modern true;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^
2 | @custom-media --modern true;
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^^^
2 | @custom-media --modern true;
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^
2 | @custom-media --modern true;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
: ^^^^^
2 | @custom-media --modern true;
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
2 | @custom-media --modern true;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 | @custom-media --modern false;
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
2 | @custom-media --modern true;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
3 | @custom-media --modern false;
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
2 | @custom-media --modern true;
: ^^^^^^^^^^^^
3 | @custom-media --modern false;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
2 | @custom-media --modern true;
: ^^^^^^^^^^^^
3 | @custom-media --modern false;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:1:1]
1 | @custom-media --modern (color), (hover);
2 | @custom-media --modern true;
: ^^^^
3 | @custom-media --modern false;
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:2:1]
2 | @custom-media --modern true;
3 | @custom-media --modern false;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:2:1]
2 | @custom-media --modern true;
3 | @custom-media --modern false;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:2:1]
2 | @custom-media --modern true;
3 | @custom-media --modern false;
: ^^^^^^^^^^^^
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:2:1]
2 | @custom-media --modern true;
3 | @custom-media --modern false;
: ^^^^^^^^^^^^
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:2:1]
2 | @custom-media --modern true;
3 | @custom-media --modern false;
: ^^^^^
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:3:1]
3 | @custom-media --modern false;
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
5 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:4:1]
4 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
5 | @custom-media --mq-b screen and (max-width: 30em);
: ^^
6 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:5:1]
5 | @custom-media --mq-b screen and (max-width: 30em);
6 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^
7 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:6:1]
6 | @custom-media --not-mq-a not all and (--mq-a);
7 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^
8 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:7:1]
7 | @custom-media --circular-mq-a (--circular-mq-b);
8 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^
9 | @custom-media --min (min-width: 320px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^^^
10 | @custom-media --max (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^^
10 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:8:1]
8 | @custom-media --circular-mq-b (--circular-mq-a);
9 | @custom-media --min (min-width: 320px);
: ^^
10 | @custom-media --max (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:9:1]
9 | @custom-media --min (min-width: 320px);
10 | @custom-media --max (max-width: 640px);
: ^^
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:10:1]
10 | @custom-media --max (max-width: 640px);
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^^^^^^^^^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:11:1]
11 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
: ^
13 | @custom-media --\(\)-escaped (min-width: 2);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^^^^^^^^^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:12:1]
12 | @custom-media --🧑🏾‍🎤 (min-width: 1);
13 | @custom-media --\(\)-escaped (min-width: 2);
: ^
14 | @custom-media --modern (min-width: 3), (min-width: 4);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^
15 | @custom-media --screen only screen;
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^
15 | @custom-media --screen only screen;
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^^^^^^^^^
15 | @custom-media --screen only screen;
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^
15 | @custom-media --screen only screen;
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:13:1]
13 | @custom-media --\(\)-escaped (min-width: 2);
14 | @custom-media --modern (min-width: 3), (min-width: 4);
: ^
15 | @custom-media --screen only screen;
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:14:1]
14 | @custom-media --modern (min-width: 3), (min-width: 4);
15 | @custom-media --screen only screen;
: ^^^^^^
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:15:1]
15 | @custom-media --screen only screen;
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
: ^^
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^^^^^^^^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:16:1]
16 | @custom-media --md-and-larger1 --screen and (width >= 570px);
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
: ^^
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^^^^^^^^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:17:1]
17 | @custom-media --md-and-larger2 (--screen) and (width >= 570px);
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
: ^^
19 | @custom-media --md-larger4 (width >=570px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^^^^^^^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:18:1]
18 | @custom-media --md-and-larger3 only screen and (width >= 570px);
19 | @custom-media --md-larger4 (width >=570px);
: ^^
20 | @custom-media --md-smaller4 (width < 1000px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^^^^^^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:19:1]
19 | @custom-media --md-larger4 (width >=570px);
20 | @custom-media --md-smaller4 (width < 1000px);
: ^^
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^^^^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:20:1]
20 | @custom-media --md-smaller4 (width < 1000px);
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
: ^^
22 | @custom-media --mq-b screen and (max-width: 30em);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^^^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:21:1]
21 | @custom-media --mq-a (max-width: 30em), (max-height: 30em);
22 | @custom-media --mq-b screen and (max-width: 30em);
: ^^
23 | @custom-media --not-mq-a not all and (--mq-a);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^^^^^^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:22:1]
22 | @custom-media --mq-b screen and (max-width: 30em);
23 | @custom-media --not-mq-a not all and (--mq-a);
: ^^^^^^
24 | @custom-media --circular-mq-a (--circular-mq-b);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:23:1]
23 | @custom-media --not-mq-a not all and (--mq-a);
24 | @custom-media --circular-mq-a (--circular-mq-b);
: ^^^^^^^^^^^^^^^
25 | @custom-media --circular-mq-b (--circular-mq-a);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:24:1]
24 | @custom-media --circular-mq-a (--circular-mq-b);
25 | @custom-media --circular-mq-b (--circular-mq-a);
: ^^^^^^^^^^^^^^^
26 | @custom-media --min (min-width: 320px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^^^
27 | @custom-media --max (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^^
27 | @custom-media --max (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:25:1]
25 | @custom-media --circular-mq-b (--circular-mq-a);
26 | @custom-media --min (min-width: 320px);
: ^^
27 | @custom-media --max (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:26:1]
26 | @custom-media --min (min-width: 320px);
27 | @custom-media --max (max-width: 640px);
: ^^
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:27:1]
27 | @custom-media --max (max-width: 640px);
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
: ^^
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:28:1]
28 | @custom-media --concat (min-width: 320px) and (max-width: 640px);
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
: ^^
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^^^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^^^^^^^^^^
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^^^^^
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^^^
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^^
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:29:1]
29 | @custom-media -- (min-width: 320px) and (max-width: 640px);
30 | @custom-media ------- (min-width: 320px) and (max-width: 640px);
: ^^
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | ,-> @media (--concat) {
33 | | body {
34 | | order: 7;
35 | | }
36 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | ,-> @media (--concat) {
33 | | body {
34 | | order: 7;
35 | | }
36 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^
33 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^
33 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^^^
33 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^^^^^^^^
33 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | ,-> @media (--concat) {
33 | | body {
34 | | order: 7;
35 | | }
36 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:31:1]
31 |
32 | @media (--concat) {
: ^
33 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | ,-> body {
34 | | order: 7;
35 | `-> }
36 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | ,-> body {
34 | | order: 7;
35 | `-> }
36 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^^^^
34 | order: 7;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | ,-> body {
34 | | order: 7;
35 | `-> }
36 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:32:1]
32 | @media (--concat) {
33 | body {
: ^
34 | order: 7;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^^^^^^^^
35 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^^^^^^^^
35 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^^^^^
35 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^^^^^
35 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^
35 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:33:1]
33 | body {
34 | order: 7;
: ^
35 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | ,-> @media (--concat) and (min-aspect-ratio: 16/9) {
39 | | body {
40 | | order: 8;
41 | | }
42 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | ,-> @media (--concat) and (min-aspect-ratio: 16/9) {
39 | | body {
40 | | order: 8;
41 | | }
42 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^
39 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^
39 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^
39 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^
39 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^
39 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^
39 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^
39 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^
39 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaFeaturePlain
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^
39 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^^^^^^^^^^^^^
39 | body {
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^
39 | body {
`----
x Ratio
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^^^
39 | body {
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^^
39 | body {
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^
39 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | ,-> @media (--concat) and (min-aspect-ratio: 16/9) {
39 | | body {
40 | | order: 8;
41 | | }
42 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:37:1]
37 |
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
: ^
39 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | ,-> body {
40 | | order: 8;
41 | `-> }
42 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | ,-> body {
40 | | order: 8;
41 | `-> }
42 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^^^^
40 | order: 8;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | ,-> body {
40 | | order: 8;
41 | `-> }
42 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:38:1]
38 | @media (--concat) and (min-aspect-ratio: 16/9) {
39 | body {
: ^
40 | order: 8;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^^^^^^^^
41 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^^^^^^^^
41 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^^^^^
41 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^^^^^
41 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^
41 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:39:1]
39 | body {
40 | order: 8;
: ^
41 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | ,-> @media ( --mq-a ) {
45 | | body {
46 | | order: 1000;
47 | | }
48 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | ,-> @media ( --mq-a ) {
45 | | body {
46 | | order: 1000;
47 | | }
48 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^
45 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^
45 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^^^^^
45 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^^^^^^
45 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | ,-> @media ( --mq-a ) {
45 | | body {
46 | | order: 1000;
47 | | }
48 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:43:1]
43 |
44 | @media ( --mq-a ) {
: ^
45 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | ,-> body {
46 | | order: 1000;
47 | `-> }
48 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | ,-> body {
46 | | order: 1000;
47 | `-> }
48 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^^^^
46 | order: 1000;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | ,-> body {
46 | | order: 1000;
47 | `-> }
48 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:44:1]
44 | @media ( --mq-a ) {
45 | body {
: ^
46 | order: 1000;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^^^^^^^^
47 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^^^^^^^^
47 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^^
47 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^^
47 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^
47 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:45:1]
45 | body {
46 | order: 1000;
: ^^^^
47 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | ,-> @media ( --mq-a ) {
51 | | body {
52 | | order: 1001;
53 | | }
54 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | ,-> @media ( --mq-a ) {
51 | | body {
52 | | order: 1001;
53 | | }
54 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^
51 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^
51 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^^^^^
51 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^^^^^^
51 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | ,-> @media ( --mq-a ) {
51 | | body {
52 | | order: 1001;
53 | | }
54 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:49:1]
49 |
50 | @media ( --mq-a ) {
: ^
51 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | ,-> body {
52 | | order: 1001;
53 | `-> }
54 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | ,-> body {
52 | | order: 1001;
53 | `-> }
54 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^^^^
52 | order: 1001;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | ,-> body {
52 | | order: 1001;
53 | `-> }
54 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:50:1]
50 | @media ( --mq-a ) {
51 | body {
: ^
52 | order: 1001;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^^^^^^^^
53 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^^^^^^^^
53 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^^
53 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^^
53 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^
53 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:51:1]
51 | body {
52 | order: 1001;
: ^^^^
53 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | ,-> @media ( --mq-a ), ( --mq-a ) {
57 | | body {
58 | | order: 1002;
59 | | }
60 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | ,-> @media ( --mq-a ), ( --mq-a ) {
57 | | body {
58 | | order: 1002;
59 | | }
60 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
57 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
57 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
57 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
57 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
57 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
57 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
57 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | ,-> @media ( --mq-a ), ( --mq-a ) {
57 | | body {
58 | | order: 1002;
59 | | }
60 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:55:1]
55 |
56 | @media ( --mq-a ), ( --mq-a ) {
: ^
57 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | ,-> body {
58 | | order: 1002;
59 | `-> }
60 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | ,-> body {
58 | | order: 1002;
59 | `-> }
60 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^^^^
58 | order: 1002;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | ,-> body {
58 | | order: 1002;
59 | `-> }
60 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:56:1]
56 | @media ( --mq-a ), ( --mq-a ) {
57 | body {
: ^
58 | order: 1002;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^^^^^^^^
59 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^^^^^^^^
59 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^^
59 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^^
59 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^
59 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:57:1]
57 | body {
58 | order: 1002;
: ^^^^
59 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | ,-> @media ( --mq-a ), ( --mq-a ) {
63 | | body {
64 | | order: 1003;
65 | | }
66 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | ,-> @media ( --mq-a ), ( --mq-a ) {
63 | | body {
64 | | order: 1003;
65 | | }
66 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
63 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
63 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^
63 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^
63 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
63 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^
63 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
63 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | ,-> @media ( --mq-a ), ( --mq-a ) {
63 | | body {
64 | | order: 1003;
65 | | }
66 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:61:1]
61 |
62 | @media ( --mq-a ), ( --mq-a ) {
: ^
63 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | ,-> body {
64 | | order: 1003;
65 | `-> }
66 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | ,-> body {
64 | | order: 1003;
65 | `-> }
66 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^^^^
64 | order: 1003;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | ,-> body {
64 | | order: 1003;
65 | `-> }
66 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:62:1]
62 | @media ( --mq-a ), ( --mq-a ) {
63 | body {
: ^
64 | order: 1003;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^^^^^^^^
65 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^^^^^^^^
65 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^^
65 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^^
65 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^
65 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:63:1]
63 | body {
64 | order: 1003;
: ^^^^
65 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | ,-> @media ( --mq-a ), ( --mq-a ) {
69 | | body {
70 | | order: 1004;
71 | | }
72 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | ,-> @media ( --mq-a ), ( --mq-a ) {
69 | | body {
70 | | order: 1004;
71 | | }
72 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
69 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^
69 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^
69 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
69 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^^^^^^^^^^^^^^^^^
69 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^^^^^^
69 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | ,-> @media ( --mq-a ), ( --mq-a ) {
69 | | body {
70 | | order: 1004;
71 | | }
72 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:67:1]
67 |
68 | @media ( --mq-a ), ( --mq-a ) {
: ^
69 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | ,-> body {
70 | | order: 1004;
71 | `-> }
72 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | ,-> body {
70 | | order: 1004;
71 | `-> }
72 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^^^^
70 | order: 1004;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | ,-> body {
70 | | order: 1004;
71 | `-> }
72 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:68:1]
68 | @media ( --mq-a ), ( --mq-a ) {
69 | body {
: ^
70 | order: 1004;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^^^^^^^^
71 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^^^^^^^^
71 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^^
71 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^^
71 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^
71 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:69:1]
69 | body {
70 | order: 1004;
: ^^^^
71 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | ,-> @media (--mq-a), (--mq-a) {
75 | | body {
76 | | order: 1005;
77 | | }
78 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | ,-> @media (--mq-a), (--mq-a) {
75 | | body {
76 | | order: 1005;
77 | | }
78 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^
75 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^
75 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^^^^^^^^^^^
75 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^
75 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
75 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^^^^^^
75 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | ,-> @media (--mq-a), (--mq-a) {
75 | | body {
76 | | order: 1005;
77 | | }
78 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:73:1]
73 |
74 | @media (--mq-a), (--mq-a) {
: ^
75 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | ,-> body {
76 | | order: 1005;
77 | `-> }
78 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | ,-> body {
76 | | order: 1005;
77 | `-> }
78 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^^^^
76 | order: 1005;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | ,-> body {
76 | | order: 1005;
77 | `-> }
78 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:74:1]
74 | @media (--mq-a), (--mq-a) {
75 | body {
: ^
76 | order: 1005;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^^^^^^^^
77 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^^^^^^^^
77 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^^
77 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^^
77 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^
77 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:75:1]
75 | body {
76 | order: 1005;
: ^^^^
77 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | ,-> @media (trailer--) {
81 | | body {
82 | | order: 1006;
83 | | }
84 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | ,-> @media (trailer--) {
81 | | body {
82 | | order: 1006;
83 | | }
84 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^
81 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^
81 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^^^
81 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^
81 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^^^^^^^^^
81 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | ,-> @media (trailer--) {
81 | | body {
82 | | order: 1006;
83 | | }
84 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:79:1]
79 |
80 | @media (trailer--) {
: ^
81 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | ,-> body {
82 | | order: 1006;
83 | `-> }
84 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | ,-> body {
82 | | order: 1006;
83 | `-> }
84 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^^^^
82 | order: 1006;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | ,-> body {
82 | | order: 1006;
83 | `-> }
84 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:80:1]
80 | @media (trailer--) {
81 | body {
: ^
82 | order: 1006;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^^^^^^^^
83 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^^^^^^^^
83 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^^
83 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^^
83 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^
83 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:81:1]
81 | body {
82 | order: 1006;
: ^^^^
83 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | ,-> @media (--min) and (--max) {
87 | | body {
88 | | order: 6;
89 | | }
90 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | ,-> @media (--min) and (--max) {
87 | | body {
88 | | order: 6;
89 | | }
90 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^
87 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^
87 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^^^^^^^^^^^^^
87 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^^^^^^^^^^^^^
87 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^^^^^^^^^^^^^
87 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^
87 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^^^^^
87 | body {
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^^^^^
87 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^
87 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^^^
87 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^^^^^
87 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | ,-> @media (--min) and (--max) {
87 | | body {
88 | | order: 6;
89 | | }
90 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:85:1]
85 |
86 | @media (--min) and (--max) {
: ^
87 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | ,-> body {
88 | | order: 6;
89 | `-> }
90 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | ,-> body {
88 | | order: 6;
89 | `-> }
90 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^^^^
88 | order: 6;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | ,-> body {
88 | | order: 6;
89 | `-> }
90 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:86:1]
86 | @media (--min) and (--max) {
87 | body {
: ^
88 | order: 6;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^^^^^^^^
89 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^^^^^^^^
89 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^^^^^
89 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^^^^^
89 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^
89 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:87:1]
87 | body {
88 | order: 6;
: ^
89 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | ,-> @media (--circular-mq-a) {
93 | | body {
94 | | order: 3;
95 | | }
96 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | ,-> @media (--circular-mq-a) {
93 | | body {
94 | | order: 3;
95 | | }
96 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^
93 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^
93 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^^^
93 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^^^^^^^^^^^^^^^
93 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | ,-> @media (--circular-mq-a) {
93 | | body {
94 | | order: 3;
95 | | }
96 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:91:1]
91 |
92 | @media (--circular-mq-a) {
: ^
93 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | ,-> body {
94 | | order: 3;
95 | `-> }
96 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | ,-> body {
94 | | order: 3;
95 | `-> }
96 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^^^^
94 | order: 3;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | ,-> body {
94 | | order: 3;
95 | `-> }
96 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:92:1]
92 | @media (--circular-mq-a) {
93 | body {
: ^
94 | order: 3;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^^^^^^^^
95 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^^^^^^^^
95 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^^^^^
95 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^^^^^
95 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^
95 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:93:1]
93 | body {
94 | order: 3;
: ^
95 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | ,-> @media (--circular-mq-b) {
99 | | body {
100 | | order: 4;
101 | | }
102 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | ,-> @media (--circular-mq-b) {
99 | | body {
100 | | order: 4;
101 | | }
102 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^
99 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^
99 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^^^
99 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^^^^^^^^^^^^^^^
99 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | ,-> @media (--circular-mq-b) {
99 | | body {
100 | | order: 4;
101 | | }
102 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:97:1]
97 |
98 | @media (--circular-mq-b) {
: ^
99 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | ,-> body {
100 | | order: 4;
101 | `-> }
102 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | ,-> body {
100 | | order: 4;
101 | `-> }
102 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^^^^
100 | order: 4;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | ,-> body {
100 | | order: 4;
101 | `-> }
102 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:98:1]
98 | @media (--circular-mq-b) {
99 | body {
: ^
100 | order: 4;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^^^^^^^^
101 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^^^^^^^^
101 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^^^^^
101 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^^^^^
101 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^
101 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:99:1]
99 | body {
100 | order: 4;
: ^
101 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | ,-> @media (--unresolved-mq) {
105 | | body {
106 | | order: 5;
107 | | }
108 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | ,-> @media (--unresolved-mq) {
105 | | body {
106 | | order: 5;
107 | | }
108 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^
105 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^
105 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^^^
105 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^^^^^^^^^^^^^^^
105 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | ,-> @media (--unresolved-mq) {
105 | | body {
106 | | order: 5;
107 | | }
108 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:103:1]
103 |
104 | @media (--unresolved-mq) {
: ^
105 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | ,-> body {
106 | | order: 5;
107 | `-> }
108 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | ,-> body {
106 | | order: 5;
107 | `-> }
108 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^^^^
106 | order: 5;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | ,-> body {
106 | | order: 5;
107 | `-> }
108 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:104:1]
104 | @media (--unresolved-mq) {
105 | body {
: ^
106 | order: 5;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^^^^^^^^
107 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^^^^^^^^
107 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^^^^^
107 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^^^^^
107 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^
107 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:105:1]
105 | body {
106 | order: 5;
: ^
107 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | ,-> @media (--mq-a) {
111 | | body {
112 | | order: 1;
113 | | }
114 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | ,-> @media (--mq-a) {
111 | | body {
112 | | order: 1;
113 | | }
114 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^
111 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^
111 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^^^
111 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^^^^^^
111 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | ,-> @media (--mq-a) {
111 | | body {
112 | | order: 1;
113 | | }
114 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:109:1]
109 |
110 | @media (--mq-a) {
: ^
111 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | ,-> body {
112 | | order: 1;
113 | `-> }
114 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | ,-> body {
112 | | order: 1;
113 | `-> }
114 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^^^^
112 | order: 1;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | ,-> body {
112 | | order: 1;
113 | `-> }
114 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:110:1]
110 | @media (--mq-a) {
111 | body {
: ^
112 | order: 1;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^^^^^^^^
113 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^^^^^^^^
113 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^^^^^
113 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^^^^^
113 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^
113 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:111:1]
111 | body {
112 | order: 1;
: ^
113 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | ,-> @media (--mq-b) {
117 | | body {
118 | | order: 1;
119 | | }
120 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | ,-> @media (--mq-b) {
117 | | body {
118 | | order: 1;
119 | | }
120 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^
117 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^
117 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^^^
117 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^^^^^^
117 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | ,-> @media (--mq-b) {
117 | | body {
118 | | order: 1;
119 | | }
120 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:115:1]
115 |
116 | @media (--mq-b) {
: ^
117 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | ,-> body {
118 | | order: 1;
119 | `-> }
120 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | ,-> body {
118 | | order: 1;
119 | `-> }
120 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^^^^
118 | order: 1;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | ,-> body {
118 | | order: 1;
119 | `-> }
120 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:116:1]
116 | @media (--mq-b) {
117 | body {
: ^
118 | order: 1;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^^^^^^^^
119 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^^^^^^^^
119 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^^^^^
119 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^^^^^
119 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^
119 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:117:1]
117 | body {
118 | order: 1;
: ^
119 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | ,-> @media (--mq-a), (--mq-a) {
123 | | body {
124 | | order: 1;
125 | | }
126 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | ,-> @media (--mq-a), (--mq-a) {
123 | | body {
124 | | order: 1;
125 | | }
126 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^
123 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^
123 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^^^^^^^^^^^
123 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^
123 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^^^
123 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^^^^^^
123 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | ,-> @media (--mq-a), (--mq-a) {
123 | | body {
124 | | order: 1;
125 | | }
126 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:121:1]
121 |
122 | @media (--mq-a), (--mq-a) {
: ^
123 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | ,-> body {
124 | | order: 1;
125 | `-> }
126 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | ,-> body {
124 | | order: 1;
125 | `-> }
126 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^^^^
124 | order: 1;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | ,-> body {
124 | | order: 1;
125 | `-> }
126 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:122:1]
122 | @media (--mq-a), (--mq-a) {
123 | body {
: ^
124 | order: 1;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^^^^^^^^
125 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^^^^^^^^
125 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^^^^^
125 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^^^^^
125 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^
125 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:123:1]
123 | body {
124 | order: 1;
: ^
125 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | ,-> @media not all and (--mq-a) {
129 | | body {
130 | | order: 2;
131 | | }
132 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | ,-> @media not all and (--mq-a) {
129 | | body {
130 | | order: 2;
131 | | }
132 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^
129 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^
129 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^^^^^^^^^^^^^
129 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^^^^^^^^^^^^^
129 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^
129 | body {
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^
129 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^
129 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^
129 | body {
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^
129 | body {
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^
129 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^
129 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^
129 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^^^
129 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^^^^^^
129 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | ,-> @media not all and (--mq-a) {
129 | | body {
130 | | order: 2;
131 | | }
132 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:127:1]
127 |
128 | @media not all and (--mq-a) {
: ^
129 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | ,-> body {
130 | | order: 2;
131 | `-> }
132 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | ,-> body {
130 | | order: 2;
131 | `-> }
132 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^^^^
130 | order: 2;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | ,-> body {
130 | | order: 2;
131 | `-> }
132 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:128:1]
128 | @media not all and (--mq-a) {
129 | body {
: ^
130 | order: 2;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^^^^^^^^
131 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^^^^^^^^
131 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^^^^^
131 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^^^^^
131 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^
131 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:129:1]
129 | body {
130 | order: 2;
: ^
131 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | ,-> @media (--not-mq-a) {
135 | | body {
136 | | order: 1;
137 | | }
138 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | ,-> @media (--not-mq-a) {
135 | | body {
136 | | order: 1;
137 | | }
138 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^
135 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^
135 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^^^
135 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^^^^^^^^^^
135 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | ,-> @media (--not-mq-a) {
135 | | body {
136 | | order: 1;
137 | | }
138 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:133:1]
133 |
134 | @media (--not-mq-a) {
: ^
135 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | ,-> body {
136 | | order: 1;
137 | `-> }
138 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | ,-> body {
136 | | order: 1;
137 | `-> }
138 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^^^^
136 | order: 1;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | ,-> body {
136 | | order: 1;
137 | `-> }
138 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:134:1]
134 | @media (--not-mq-a) {
135 | body {
: ^
136 | order: 1;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^^^^^^^^
137 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^^^^^^^^
137 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^^^^^
137 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^^^^^
137 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^
137 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:135:1]
135 | body {
136 | order: 1;
: ^
137 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | ,-> @media not all and (--not-mq-a) {
141 | | body {
142 | | order: 2;
143 | | }
144 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | ,-> @media not all and (--not-mq-a) {
141 | | body {
142 | | order: 2;
143 | | }
144 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^
141 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^
141 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^^^^^^^^^^^^^
141 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^^^^^^^^^^^^^
141 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^
141 | body {
`----
x MediaType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^
141 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^
141 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^
141 | body {
`----
x MediaConditionWithoutOr
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^
141 | body {
`----
x MediaConditionWithoutOrType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^
141 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^
141 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^
141 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^^^
141 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^^^^^^^^^^
141 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | ,-> @media not all and (--not-mq-a) {
141 | | body {
142 | | order: 2;
143 | | }
144 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:139:1]
139 |
140 | @media not all and (--not-mq-a) {
: ^
141 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | ,-> body {
142 | | order: 2;
143 | `-> }
144 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | ,-> body {
142 | | order: 2;
143 | `-> }
144 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^^^^
142 | order: 2;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | ,-> body {
142 | | order: 2;
143 | `-> }
144 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:140:1]
140 | @media not all and (--not-mq-a) {
141 | body {
: ^
142 | order: 2;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^^^^^^^^
143 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^^^^^^^^
143 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^^^^^
143 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^^^^^
143 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^
143 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:141:1]
141 | body {
142 | order: 2;
: ^
143 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | ,-> @media (--🧑🏾‍🎤) {
148 | | .a {
149 | | order: 1;
150 | | }
151 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | ,-> @media (--🧑🏾‍🎤) {
148 | | .a {
149 | | order: 1;
150 | | }
151 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^
148 | .a {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^
148 | .a {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^^^
148 | .a {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^^^^^^^^^^^^^^^^^
148 | .a {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | ,-> @media (--🧑🏾‍🎤) {
148 | | .a {
149 | | order: 1;
150 | | }
151 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:146:1]
146 |
147 | @media (--🧑🏾‍🎤) {
: ^
148 | .a {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | ,-> .a {
149 | | order: 1;
150 | `-> }
151 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | ,-> .a {
149 | | order: 1;
150 | `-> }
151 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^^
149 | order: 1;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^^
149 | order: 1;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^^
149 | order: 1;
`----
x SubclassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^^
149 | order: 1;
`----
x ClassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^^
149 | order: 1;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^
149 | order: 1;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | ,-> .a {
149 | | order: 1;
150 | `-> }
151 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:147:1]
147 | @media (--🧑🏾‍🎤) {
148 | .a {
: ^
149 | order: 1;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^^^^^^^^
150 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^^^^^^^^
150 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^^^^^
150 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^^^^^
150 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^
150 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:148:1]
148 | .a {
149 | order: 1;
: ^
150 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | ,-> @media (--\(\)-escaped) {
154 | | .a {
155 | | order: 2;
156 | | }
157 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | ,-> @media (--\(\)-escaped) {
154 | | .a {
155 | | order: 2;
156 | | }
157 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^
154 | .a {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^
154 | .a {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^^^
154 | .a {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^^^^^^^^^^^^^^
154 | .a {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | ,-> @media (--\(\)-escaped) {
154 | | .a {
155 | | order: 2;
156 | | }
157 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:152:1]
152 |
153 | @media (--\(\)-escaped) {
: ^
154 | .a {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | ,-> .a {
155 | | order: 2;
156 | `-> }
157 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | ,-> .a {
155 | | order: 2;
156 | `-> }
157 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^^
155 | order: 2;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^^
155 | order: 2;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^^
155 | order: 2;
`----
x SubclassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^^
155 | order: 2;
`----
x ClassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^^
155 | order: 2;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^
155 | order: 2;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | ,-> .a {
155 | | order: 2;
156 | `-> }
157 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:153:1]
153 | @media (--\(\)-escaped) {
154 | .a {
: ^
155 | order: 2;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^^^^^^^^
156 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^^^^^^^^
156 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^^^^^
156 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^^^^^
156 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^
156 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:154:1]
154 | .a {
155 | order: 2;
: ^
156 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | ,-> @media (--modern) and (width > 1024px) {
160 | | .a { order: 3; }
161 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | ,-> @media (--modern) and (width > 1024px) {
160 | | .a { order: 3; }
161 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^
160 | .a { order: 3; }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^
160 | .a { order: 3; }
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^
160 | .a { order: 3; }
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^
160 | .a { order: 3; }
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeatureRange
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^^^^^^^^^^^
160 | .a { order: 3; }
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^
160 | .a { order: 3; }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^
160 | .a { order: 3; }
`----
x MediaFeatureValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^
160 | .a { order: 3; }
`----
x Dimension
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^
160 | .a { order: 3; }
`----
x Length
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^^^
160 | .a { order: 3; }
`----
x Number
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^^^
160 | .a { order: 3; }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^^
160 | .a { order: 3; }
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | ,-> @media (--modern) and (width > 1024px) {
160 | | .a { order: 3; }
161 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:158:1]
158 |
159 | @media (--modern) and (width > 1024px) {
: ^
160 | .a { order: 3; }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^^^^^^^^^^^^
161 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^^^^^^^^^^^^
161 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^
161 | }
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^
161 | }
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^
161 | }
`----
x SubclassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^
161 | }
`----
x ClassSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^
161 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^
161 | }
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^^^^^^^^^
161 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^
161 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^^^^
161 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^^^^
161 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^
161 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^^^^^
161 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^
161 | }
`----
x Integer
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:159:1]
159 | @media (--modern) and (width > 1024px) {
160 | .a { order: 3; }
: ^
161 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | ,-> @media (--md-and-larger1) {
164 | | body {
165 | | background-color: red;
166 | | }
167 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | ,-> @media (--md-and-larger1) {
164 | | body {
165 | | background-color: red;
166 | | }
167 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^
164 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^
164 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^^^
164 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^^^^^^^^^^^^^^^^
164 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | ,-> @media (--md-and-larger1) {
164 | | body {
165 | | background-color: red;
166 | | }
167 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:162:1]
162 |
163 | @media (--md-and-larger1) {
: ^
164 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | ,-> body {
165 | | background-color: red;
166 | `-> }
167 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | ,-> body {
165 | | background-color: red;
166 | `-> }
167 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^^^^
165 | background-color: red;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | ,-> body {
165 | | background-color: red;
166 | `-> }
167 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:163:1]
163 | @media (--md-and-larger1) {
164 | body {
: ^
165 | background-color: red;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^^^^^^^^^^^^^^^^^^^
166 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^^^^^^^^^^^^^^^^^^^
166 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^^^^^^^^^^^^^^
166 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^^^^^^^^^^^^^^
166 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^
166 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:164:1]
164 | body {
165 | background-color: red;
: ^^^
166 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | ,-> @media (--md-and-larger2) {
170 | | body {
171 | | background-color: yellow;
172 | | }
173 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | ,-> @media (--md-and-larger2) {
170 | | body {
171 | | background-color: yellow;
172 | | }
173 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^
170 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^
170 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^^^
170 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^^^^^^^^^^^^^^^^
170 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | ,-> @media (--md-and-larger2) {
170 | | body {
171 | | background-color: yellow;
172 | | }
173 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:168:1]
168 |
169 | @media (--md-and-larger2) {
: ^
170 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | ,-> body {
171 | | background-color: yellow;
172 | `-> }
173 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | ,-> body {
171 | | background-color: yellow;
172 | `-> }
173 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^^^^
171 | background-color: yellow;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | ,-> body {
171 | | background-color: yellow;
172 | `-> }
173 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:169:1]
169 | @media (--md-and-larger2) {
170 | body {
: ^
171 | background-color: yellow;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^^^^^^^^^^^^^^^^^^^
172 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^^^^^^^^^^^^^^^^^^^
172 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^^^^^^^^^^^
172 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^^^^^^^^^^^
172 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^
172 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:170:1]
170 | body {
171 | background-color: yellow;
: ^^^^^^
172 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | ,-> @media (--md-and-larger3) {
176 | | body {
177 | | background-color: green;
178 | | }
179 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | ,-> @media (--md-and-larger3) {
176 | | body {
177 | | background-color: green;
178 | | }
179 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^
176 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^
176 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^^^
176 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^^^^^^^^^^^^^^^^
176 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | ,-> @media (--md-and-larger3) {
176 | | body {
177 | | background-color: green;
178 | | }
179 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:174:1]
174 |
175 | @media (--md-and-larger3) {
: ^
176 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | ,-> body {
177 | | background-color: green;
178 | `-> }
179 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | ,-> body {
177 | | background-color: green;
178 | `-> }
179 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^^^^
177 | background-color: green;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | ,-> body {
177 | | background-color: green;
178 | `-> }
179 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:175:1]
175 | @media (--md-and-larger3) {
176 | body {
: ^
177 | background-color: green;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
178 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
178 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^^^^^^^^^^^^
178 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^^^^^^^^^^^^
178 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^
178 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:176:1]
176 | body {
177 | background-color: green;
: ^^^^^
178 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | ,-> @media (--screen) and (--md-larger4) {
182 | | body {
183 | | background-color: green;
184 | | }
185 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | ,-> @media (--screen) and (--md-larger4) {
182 | | body {
183 | | background-color: green;
184 | | }
185 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^
182 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^
182 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
182 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^
182 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^
182 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^
182 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^
182 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^
182 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^^^^^
182 | body {
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^^^^^
182 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^
182 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^
182 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^
182 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^^^
182 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^^^^^^^^^^^^
182 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | ,-> @media (--screen) and (--md-larger4) {
182 | | body {
183 | | background-color: green;
184 | | }
185 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:180:1]
180 |
181 | @media (--screen) and (--md-larger4) {
: ^
182 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | ,-> body {
183 | | background-color: green;
184 | `-> }
185 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | ,-> body {
183 | | background-color: green;
184 | `-> }
185 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^^^^
183 | background-color: green;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | ,-> body {
183 | | background-color: green;
184 | `-> }
185 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:181:1]
181 | @media (--screen) and (--md-larger4) {
182 | body {
: ^
183 | background-color: green;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
184 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
184 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^^^^^^^^^^^^
184 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^^^^^^^^^^^^
184 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^
184 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:182:1]
182 | body {
183 | background-color: green;
: ^^^^^
184 | }
`----
x Rule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | ,-> @media (--md-larger4) and (--md-smaller4) {
188 | | body {
189 | | background-color: green;
190 | | }
191 | `-> }
`----
x AtRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | ,-> @media (--md-larger4) and (--md-smaller4) {
188 | | body {
189 | | background-color: green;
190 | | }
191 | `-> }
`----
x AtRuleName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^
188 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^
188 | body {
`----
x MediaQueryList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188 | body {
`----
x MediaQuery
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188 | body {
`----
x MediaCondition
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^
188 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^
188 | body {
`----
x MediaConditionAllType
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^^^^^
188 | body {
`----
x MediaAnd
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^^^^^
188 | body {
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^
188 | body {
`----
x MediaInParens
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeature
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeatureBoolean
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^^^
188 | body {
`----
x MediaFeatureName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^^^^^^^^^^^^^
188 | body {
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | ,-> @media (--md-larger4) and (--md-smaller4) {
188 | | body {
189 | | background-color: green;
190 | | }
191 | `-> }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:186:1]
186 |
187 | @media (--md-larger4) and (--md-smaller4) {
: ^
188 | body {
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | ,-> body {
189 | | background-color: green;
190 | `-> }
191 | }
`----
x QualifiedRule
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | ,-> body {
189 | | background-color: green;
190 | `-> }
191 | }
`----
x SelectorList
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x ComplexSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x CompoundSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x TypeSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x TagNameSelector
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x WqName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^^^^
189 | background-color: green;
`----
x SimpleBlock
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | ,-> body {
189 | | background-color: green;
190 | `-> }
191 | }
`----
x LBrace
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:187:1]
187 | @media (--md-larger4) and (--md-smaller4) {
188 | body {
: ^
189 | background-color: green;
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
190 | }
`----
x Declaration
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^^^^^^^^^^^^^^^^^^^
190 | }
`----
x DeclarationName
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^^^^^^^^^^^^
190 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^^^^^^^^^^^^
190 | }
`----
x ComponentValue
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^
190 | }
`----
x Ident
,-[$DIR/tests/fixture/at-rule/custom-media/input.css:188:1]
188 | body {
189 | background-color: green;
: ^^^^^
190 | }
`----