[w3c/webcomponents] CustomElementRegistry per shadow DOM (#792)

I think custom elements should be able to be defined per shadow DOM like css.

```js
window.customElements.define('my-custom-element', MyCustomElement0);
shadowroot1.customElements.define('my-custom-element', MyCustomElement1);
shadowroot2.customElements.define('my-custom-element', MyCustomElement2);
```

-- 
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/792

Received on Saturday, 9 February 2019 10:45:59 UTC