Re: [w3c/webcomponents] Provide a lightweight mechanism to add styles to a custom element (#468)

Suppose we have

```js
customElements.define("custom-element", CustomElement, {styles: '.thing { height: 50%; }');
```

Will the height of `div.thing` be 50% of the element where it is finally located (i.e. the element in the flat tree where div.thing finally lives)? Or 50% of the height of the `<custom-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/w3c/webcomponents/issues/468#issuecomment-216059416

Received on Sunday, 1 May 2016 18:04:29 UTC