Re: [whatwg/dom] Increase the ability to query whether the host environment supports a specific event (#968)

@answershuto what about it?

```js
const div = document.createElement('div');
div.addEventListener('load', console.log, true);
document.body.appendChild(div).innerHTML = '<img src="/favicon.ico">';
```

Works pretty well to me.

-- 
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/issues/968#issuecomment-818626000

Received on Tuesday, 13 April 2021 10:21:49 UTC