Re: [w3c/FileAPI] Disparity in `loadend` event dispatch between spec, implementation & tests (#175)

Actually, no they are not:

```js
const target = new EventTarget()
target.addEventListener("f", () => {
    console.log("f");
    queueMicrotask(() => console.log("f mt"));
});
target.addEventListener("x", () => {
    console.log("x");
    queueMicrotask(() => console.log("x mt"));
});
target.dispatchEvent(new Event("f"));
target.dispatchEvent(new Event("x"));
```


-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/w3c/FileAPI/issues/175#issuecomment-897539238

Received on Thursday, 12 August 2021 10:52:39 UTC