- From: Quentin Albert via GitHub <noreply@w3.org>
- Date: Sun, 08 Jun 2025 16:43:49 +0000
- To: public-css-archive@w3.org
Que-tin has just created a new issue for https://github.com/w3c/csswg-drafts:
== Defining how custom-indent results referring to a function should be handled ==
How should results should be handled that return a custom-indent that might be a reference to another function?
```css
@function --x1() returns <number> {
result: 2;
}
@function --x2() returns <custom-ident> {
result: ident("x1");
}
.x {
/* Will this be possible? */
--y: --x()();
/* Or do I need to do this? */
--y: --x();
--z: --y();
}
```
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/12304 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Sunday, 8 June 2025 16:43:50 UTC