Re: [csswg-drafts] [cssom] Serialization of `initial` longhand within shorthand for specified style (#8150)

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