swc/crates/swc_css_parser/tests/fixture
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
..
at-rule feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
bom feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
cdo-and-cdc feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
comment feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
dashed-ident feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
declaration feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
declaration-list feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
delim/backslash feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
dimension/basic feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
empty feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
function feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
hacks feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
hex-colors feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
important/basic feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
number feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
only/1 feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
property/escaped feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
selector feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
style-block feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
styled-jsx/selector feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
stylesheet feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
stylis/comma/01 feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
turbo/4092 feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
value feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
vendor feat(css/parser): Store lexed comments (#8091) 2023-10-10 11:42:20 +00:00
vercel-2175 fix(css/parser): Fix parsing of hsla(var(--foo), 1) (#8443) 2023-12-23 12:39:54 +09:00