Re: [whatwg] Default value of complete attribute on new Image objects

2010-07-09 Thread Diego Perini
Just to add that also by using DOM methods like: document.createElement('img').complete; // true the result is the same: complete is always true. Only tested on Firefox 3.5.10 and Opera 10.60. On FF after setting src= the complete property return true while on Opera it return false. On FF

Re: [whatwg] HTML5 (including next generation additions still in development) - Mozilla Firefox (Not Responding)

2010-07-09 Thread Lachlan Hunt
On 2010-07-08 19:18, Diego Perini wrote: On Thu, Jul 8, 2010 at 4:03 PM, Lachlan Huntlachlan.h...@lachy.id.auwrote: As a workaround, you can use AdBlock in Firefox to block the offending script. Just manually add this URL to your block list.

Re: [whatwg] Default value of complete attribute on new Image objects

2010-07-09 Thread Boris Zbarsky
On 7/9/10 3:23 AM, Diego Perini wrote: On FF after setting src= the complete property return true while on Opera it return false. We special-case src= and don't do any loading; iirc the spec calls for that at this point. On FF after setting src=/nonexisting.gif the complete property

Re: [whatwg] Default value of complete attribute on new Image objects

2010-07-09 Thread Diego Perini
On Fri, Jul 9, 2010 at 5:46 PM, Boris Zbarsky bzbar...@mit.edu wrote: On 7/9/10 3:23 AM, Diego Perini wrote: On FF after setting src= the complete property return true while on Opera it return false. We special-case src= and don't do any loading; iirc the spec calls for that at this