Re: [whatwg/dom] Declarative Shadow DOM (#831)

Hi, I really need SSR for search bots.

But there is a problem, the tag `A` may be in the shadow DOM, the text content for `A` in the light DOM
(this real use cases).

The search bot, will not understand such HTML correctly:
```HTML
<host-element>
    <template shadowroot="open">
        <a href="/link">
          <slot name="link"></slot>
        </a>
    </template>
    <span slot="link">Link content</span>
</host-element>
```

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/issues/831#issuecomment-597841227

Received on Wednesday, 11 March 2020 20:07:06 UTC