- From: Domenic Denicola <notifications@github.com>
- Date: Wed, 15 May 2019 18:52:02 +0000 (UTC)
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Wednesday, 15 May 2019 18:52:26 UTC
Doesn't this fail to respect the disable-shadow flag for customized built-in elements on the safelist? E.g. `<h4 is="special-h4">` with
```js
customElements.define("special-h4", class extends HTMLHeadingElement {
disabledFeatures = ['shadow'];
}, { extends: 'h4' });
```
I think we need to pass the node's `is value`. I will add a commit to do that, but we should also update the tests.
--
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/whatwg/dom/pull/760#issuecomment-492779049
Received on Wednesday, 15 May 2019 18:52:26 UTC