[whatwg] Promise-vending loaded() & ready() methods on various elements
Boris Zbarsky
bzbarsky at MIT.EDU
Fri Mar 14 19:25:50 PDT 2014
On 3/14/14 8:31 PM, Kyle Simpson wrote:
> As I noted above, what we need to know (and I guess we need to know this from all browsers) if there's a *guarantee* of a->b->c execution order (even if all 3 are executing async)
I don't believe there is such a guarantee, unless the spec spells it out
explicitly.
For async scripts, Gecko, does the initial script parse+compile on a
random background thread from a threadpool, and if there is not an
explicit dependency between the scripts (which I _think_ is only there
for parser-inserted scripts) then the script will simply run whenever
that script's background parse thread finishes.
-Boris
More information about the whatwg
mailing list