Re: [whatwg/dom] Removing event listeners through an identifier (#208)

Is capture part of the key? If so, the browser already has to normalize, to prevent these from being added twice:

```js
el.addEventListener("type", cb, true);
el.addEventListener("type", cb, { capture: true });
```

-- 
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/208#issuecomment-311516795

Received on Tuesday, 27 June 2017 23:46:36 UTC