- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Tue, 01 Aug 2023 13:15:25 +0000
- To: public-css-archive@w3.org
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