Re: [csswg-drafts] [css-nesting] Lexical scoping for identifiers defined in nested blocks (#6809)

How would it work in CSSOM? In the original example, what would this return?

```js
let el = document.querySelector(".foo .baz");
getComputedStyle(el).animationName;
```

Would this be no-op?

```js
el.style.animationName = getComputedStyle(el).animationName;
```

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


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

Received on Tuesday, 16 November 2021 20:18:37 UTC