- From: Oriol Brufau via GitHub <sysbot+gh@w3.org>
- Date: Wed, 30 Nov 2022 18:43:57 +0000
- To: public-css-archive@w3.org
Assuming omitted longhands are reset to their initial values as usual,
```js
var {style} = document.createElement("div");
style.listStyle = "url()";
style.listStyleType = "disc";
style.listStyle; // 'url("")'
style.listStyleType = "none";
style.listStyle; // 'url("") none'
```
--
GitHub Notification of comment by Loirooriol
Please view or discuss this issue at https://github.com/w3c/csswg-drafts/issues/8150#issuecomment-1332586087 using your GitHub account
--
Sent via github-notify-ml as configured in https://github.com/w3c/github-notify-ml-config
Received on Wednesday, 30 November 2022 18:43:59 UTC