Re: [csswg-drafts] [css-variables][css-transitions] Clarify transitions on custom properties (#7405)

Thanks! So in [this example](https://codesandbox.io/s/hardcore-nash-sgcq2t?file=/index.html), you would expect `#foo` to be changed to "PASS" after the `setProperty` call? That doesn't seem to work in the latest versions of any browser -- only if I use `--bar` for a built-in property, e.g. by changing the style from:

```css
#foo {
  transition: all 1s;
}
```

```css
#foo {
  color: var(--bar);
  transition: all 1s;
}
```

(and then, of course, the transition is on the `color` property, not the `--bar` property)

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


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

Received on Thursday, 23 June 2022 15:26:14 UTC