- From: Anne van Kesteren <notifications@github.com>
- Date: Fri, 07 Sep 2018 00:53:28 -0700
- To: whatwg/dom <dom@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Friday, 7 September 2018 07:53:49 UTC
I.e., change the order in which these are invoked:
```js
t = document.createElement("hi");
t.addEventListener("test", e => w("bubble"), false);
t.addEventListener("test", e => w("capture"), true);
t.dispatchEvent(new Event("test"));
```
Given that all browsers agree that might be somewhat unrealistic.
--
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/685#issuecomment-419355034
Received on Friday, 7 September 2018 07:53:49 UTC