- From: Rune Lillesveen via GitHub <sysbot+gh@w3.org>
- Date: Thu, 27 Oct 2022 08:55:28 +0000
- To: public-css-archive@w3.org
Even with lookahead, this is still ambiguous per core syntax since blocks are valid component values in a declaration:
```css
div:hover span {}
```
For instance inside a style rule, does the semi-colon make a difference between:
```css
span {
div:hover span {}
color: blue;
}
```
and:
```css
span {
div:hover span {};
color: blue;
}
```
?
--
GitHub Notification of comment by lilles
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/7961#issuecomment-1293206235 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Thursday, 27 October 2022 08:55:29 UTC