- From: Romain Menke via GitHub <sysbot+gh@w3.org>
- Date: Fri, 04 Nov 2022 18:33:28 +0000
- To: public-css-archive@w3.org
```css
/* 1.a */
:scope {
@scope (.foo) {
color: pink;
}
}
```
is this equivalent to :
1. `:scope` is `:root`
2. "resolve" nesting
```css
/* 1.a */
@scope (.foo) {
:root {
color: pink;
}
}
```
or equivalent to :
is this equivalent to :
1. "resolve" nesting
2. `:scope` is `:scope`
```css
/* 1.a */
@scope (.foo) {
:scope {
color: pink;
}
}
```
--
GitHub Notification of comment by romainmenke
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8019#issuecomment-1303985472 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Friday, 4 November 2022 18:33:30 UTC