[w3c/webcomponents] [CSS Scoping] Support two types of pseudo-elements with ::slotted() selectors (#756)

Is not working when I use two pseudo-elements in ::slotted expression. Example:

`::slotted(.element):last-child:after {
     content: none;
}`

But is working when:
`::slotted(.element):after {
    content: '-';
}`

Is there a way to solve this?

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/webcomponents/issues/756

Received on Monday, 23 July 2018 16:31:01 UTC