Re: [WICG/webcomponents] Interaction between imperative slotting and declarative shadow DOM (Issue #967)

@justinfagnani : So I guess a proposal is something like this:
```html
<custom-element>
    <template shadowroot="closed" slotassignment="manual">
        <slot initialassignment="0"></slot>, <slot initialassignment="2 3"></slot>
    </template>
    <custom-child>hello</custom-chid>
    <custom-child>world</custom-chid>
    <custom-child>shadow</custom-chid>
    <custom-child>DOM</custom-chid>
</custom-element>
```
would yield: "hello, shadow DOM"

-- 
Reply to this email directly or view it on GitHub:
https://github.com/WICG/webcomponents/issues/967#issuecomment-1260389204
You are receiving this because you are subscribed to this thread.

Message ID: <WICG/webcomponents/issues/967/1260389204@github.com>

Received on Wednesday, 28 September 2022 05:00:18 UTC