Re: [w3c/webcomponents] Should <link rel="stylesheet"> work inside shadow DOM? (#530)

Well, if I have the following stylesheet being linked:
```CSS
button
{
    color: rgb(12, 34, 56);
}
```
And `but` is a button inside the shadow tree, I’d expect the following to always log `"rgb(12, 34, 56)"`, even if the shadow tree isn’t in a document:
```Javascript
console.log(window.getComputedStyle(but).color);
```

---
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/530#issuecomment-233421774

Received on Monday, 18 July 2016 18:49:18 UTC