FWIW, loading scripts asynchronously with the "Script DOM Element" approach
does not block window.onload in IE.  In Chrome and Safari, the downloading
blocks, but execution doesn't.  In Firefox and Opera, downloading and
execution blocks.

So, it's pretty hard to say what web developers would expect with async
scripts.  I know that they will like having things like ads and analytics
not block window.onload though.  At the very least, we need that ability to
make that happen.



On Sat, Feb 13, 2010 at 12:15 PM, Boris Zbarsky <[email protected]> wrote:

> On 2/13/10 9:29 AM, Darin Fisher wrote:
>
>> The Mozilla network code uses the phrase "load background" to describe a
>> load that happens asynchronously in the background _and_ does not block
>> onload.  Perhaps not coincidentally, this mode is used to load
>> background images :-)
>>
>
> It used to be.  It's not anymore, because it was not compatible with what
> other UAs did or with web developer expectations.  At this point the
> background mode is only used for async XHR, and then only because background
> modes don't make the throbber spin.  Otherwise we wouldn't use it for
> anything at all.
>
> Which is my real worry about making any loads that don't block onload:
> would web developers expect them to?
>
> -Boris
>

Reply via email to