id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
11760	animate width of inline object in ie7 changes display to inline-block	tbrix13@…		"ie7 does not support inline-block

if you set zoom = 1 and display = inline it does the same as inline-block

it looks like this is taken care of on lines 8562-8567 but it doesn't work on ie7. It sets display to inline-block instead of setting zoom to 1

----

jquery.1.7.2.js line 8562 - 8567
{{{
if ( !jQuery.support.inlineBlockNeedsLayout || defaultDisplay( this.nodeName ) === ""inline"" )
{
  this.style.display = ""inline-block"";
}
else
{
  this.style.zoom = 1;
}
}}}
----

"	bug	closed	low	None	effects	1.7.2	notabug				
