swc/crates/swc_css_parser/tests
Donny/강동윤 d89b60a000
fix(css/parser): Fix parsing of hsla(var(--foo), 1) (#8443)
**Description:**

```css
.test {
    border-color: hsla(var(--ds-gray-200-value), 1);
}
```

should be compiled as

```css

.test {
    border-color: hsla(var(--ds-gray-200-value), 1);
}
```

Previously, it was

```
.test {
    border-color: hsla(var(--ds-gray-200-value),);
}

```


**Related issue:**

 - https://linear.app/vercel/issue/PACK-2175
2023-12-23 12:39:54 +09:00
..
fixture fix(css/parser): Fix parsing of hsla(var(--foo), 1) (#8443) 2023-12-23 12:39:54 +09:00
line-comment/css-in-js feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
recovery refactor(atoms): Remove usage of js_word! to drop string-cache (#7976) 2023-10-08 00:39:51 +00:00
fixture.rs feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00