Re: [w3c/webcomponents] Allowing serialized access to custom element implementation DOM for web archival benefits (#657)

Can you provide an example of what you mean? 

Here's a scenario:
```
<parent-element>
  // Shadow DOM
  <child-element>
    // Shadow DOM
    <foo-bar>...</foo-bar>
  </child-element> 
</parent-element>
```

So then `<parent-element>.shadowRoot.innerHTML` returns `<child-element></child-element>`, but there is no way to know that <foo-bar></foo-bar> is there within the child's Shadow DOM.

-- 
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/657#issuecomment-324421739

Received on Wednesday, 23 August 2017 18:27:08 UTC