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

Here's a serialization of that:

```js
<parent-element>
</parent-element>
<script>
"use strict";

const shadowRoot = document.currentScript.previousElementSibling.attachShadow({ mode: "open" });
shadowRoot.innerHTML = `<child-element></child-element>`;

const shadowRoot2 = shadowRoot.firstElementChild.attachShadow({ mode: "open" });
shadowRoot2.innerHTML = `<foo-bar>...</foo-bar>`;
</script>
```

-- 
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-324425895

Received on Wednesday, 23 August 2017 18:43:02 UTC