I think I disagree here. If an element has a height or a width, it can be
affecting the page flow (even without a height or width it can, but it's far
less likely that it is).

On Thu, Dec 3, 2009 at 1:21 PM, Oskar Krawczyk <[email protected]>wrote:

> Pull, modify (you edit the code using GitHub's web interface), push.
>
> ___
>
> Oskar Krawczyk
> http://nouincolor.com
>
>
>
> On Thu, Dec 3, 2009 at 5:27 PM, Thierry bela nanga <[email protected]>wrote:
>
>>
>> the current returned value is,
>>
>> return (w == 0 && h == 0) ? false : (w > 0 && h > 0) ? true :
>> this.isDisplayed();
>>
>> and should be,
>>
>>
>> return (w == 0 || h == 0) ? false : (w > 0 && h > 0) ? true :
>> this.isDisplayed();
>>
>>
>> --
>> http://tbela99.blogspot.com/
>>
>> fax : (+33) 08 26 51 94 51
>>
>
>

Reply via email to