- From: Luca Casonato <notifications@github.com>
- Date: Thu, 12 Aug 2021 03:52:26 -0700
- To: w3c/FileAPI <FileAPI@noreply.github.com>
- Cc: Subscribed <subscribed@noreply.github.com>
Received on Thursday, 12 August 2021 10:52:39 UTC
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