Re: [csswg-drafts] [css-values-5][various] Better handling of arguments with commas (#9539)

You mention `var()`. So let's say somebody is using

```css
.subgrid-2 {
  grid-column: span 2;
  grid-template-columns: subgrid var(--lines-1, [start]) var(--lines-2, [middle]) var(--lines-3, [end]);
}
```

Currently computes to `subgrid [start] [middle] [end]`, you proposal would result in an invalid `subgrid start middle end`, so it would become invalid at computed-value time?

-- 
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9539#issuecomment-1787065602 using your GitHub account


-- 
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config

Received on Tuesday, 31 October 2023 11:52:06 UTC