- From: fantasai via GitHub <sysbot+gh@w3.org>
- Date: Tue, 28 Nov 2023 17:32:03 +0000
- To: public-css-archive@w3.org
@Loirooriol I think what happens in that case is that the comma is interpreted as a top-level comma (i.e. separating toggle() arguments). Since we don't hit a semicolon, it parses cleanly and we're done. If the author wants to include commas in their value, then they have to use semicolons to separate top-level arguments. We notice that's happening because as we're parsing the function, we hit a semicolon; that requires us to go back and reparse. It does mean that you can't pass to a variable-length function a single argument that includes commas, but... that's probably fine? -- GitHub Notification of comment by fantasai Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/9539#issuecomment-1830356145 using your GitHub account -- Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Tuesday, 28 November 2023 17:32:07 UTC