swc/crates/swc_css_parser/tests/recovery/style-blocks-contents/invalid-nested-2/input.css
2022-03-05 11:58:40 +00:00

13 lines
171 B
CSS

.class {
color: red;
& test;
background: red
}
article {
color: green;
& { color: blue; }
color: red;
&.foo { color: yellow; } /* valid! */
}