Re: Problems of Microtasks & Promises in Firefox

2017-12-10 Thread Bevis Tseng
On Fri, Dec 8, 2017 at 3:21 PM Bevis Tseng wrote: > After Bug 1193394 > revealed the problem about how Firefox performs microtasks differently from > what has be specified in HTML standard, > A small correction here

Re: Problems of Microtasks & Promises in Firefox

2017-12-08 Thread smaug
On 12/08/2017 09:21 AM, Bevis Tseng wrote: Hi Everyone, Microtask is a fundamental piece of the EventLoop defined in HTML standard to allow algorithms to run something asynchronously that was just settled asap without the latency of enqueuing a new task. The most well-known use cases of

Problems of Microtasks & Promises in Firefox

2017-12-07 Thread Bevis Tseng
Hi Everyone, Microtask is a fundamental piece of the EventLoop defined in HTML standard to allow algorithms to run something asynchronously that was just settled asap without the latency of enqueuing a new task. The most well-known use cases of Microtasks are Promises, await of async function