Re: [csswg-drafts] [css-variables] CSS wide keywords in custom properties with dependencies (#9131)

I still think this is totally unrelated to cycles.

```html
<!doctype html>
<style>
  .outer {  --color: red }
  @layer {
    .inner {  --color: green  }
  }
  .inner {  --color: revert-layer;  color: var(--color)  }
</style>
<div class="outer">
  <div class="inner">
      Which color am I?
  </div>
</div>
```

Gecko & Blink: green
WebKit: red

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


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

Received on Tuesday, 1 August 2023 13:15:26 UTC