Re: [whatwg/dom] Capturing event listeners are called during bubbling phase for shadow hosts (#685)

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