id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	blocking	blockedby
9509	CSS extremely slow in IE9	artur.herczeg@…	artur.herczeg@gmail.com	"The following function is extremely slow in IE9 compared to IE7 and IE8. All the dependent functions are slow as well.

{{{
#!js
css: function( elem, name, extra ) {
		// Make sure that we're working with the right name
		var ret, origName = jQuery.camelCase( name ),
			hooks = jQuery.cssHooks[ origName ];

		name = jQuery.cssProps[ origName ] || origName;

		// If a hook was provided get the computed value from there
		if ( hooks && ""get"" in hooks && (ret = hooks.get( elem, true, extra )) !== undefined ) {
			return ret;

		// Otherwise, if a way to get the computed value exists, use that
		} else if ( curCSS ) {
			return curCSS( elem, name, origName );
		}
	}
}}}"	bug	closed	low	1.next	css	1.6.1	invalid				
