id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
7641,"Animating style to ""auto"" and """" (empty string) values",darccyclarke,lrbabe,"Have been doing some testing and realized trying to animate height / width to the ""auto"" value doesn't work. Submitting my quick patch that seems to solve this.

Note: there may be a better way then to clone the node to get it's default values but I thought it worked well in this case. This shoul be pretty heavily scrutinized since I've only bounced the idea off a few other people.

Add the following before line #6471 (Unminified jQuery 1.4.4 version):
{{{
if ( val === ""auto"" && ( name === ""height"" || name === ""width"" ) ){
						var $temp = jQuery(self).clone().css(name,""auto"").appendTo(""body"");
						val = $temp.css(name);
			        	$temp.remove();
					}
}}}

",enhancement,closed,low,None,effects,1.6.1,wontfix,,,,
