swc/crates/swc_css_parser/tests/recovery/function/rgb/input.css
2022-03-04 06:24:22 +09:00

14 lines
314 B
CSS

.div {
color: rgb("test");
color: rgb("test", 100, 100);
color: rgb(100, "test", 100);
color: rgb(100, 100, "test");
color: rgb(100, 100, 100, "test");
color: rgb("test" 100 100);
color: rgb(100 "test" 100);
color: rgb(100 100 "test");
color: rgb(100 100 100 / "test");
}