fixed an error in the array reference that was causing support tests to not test properties as they should.

This commit is contained in:
scottjehl 2011-08-07 13:19:20 -04:00
parent 38368b6010
commit 0253e67fbb

View file

@ -18,7 +18,7 @@ function propExists( prop ) {
props = ( prop + " " + vendors.join( uc_prop + " " ) + uc_prop ).split( " " );
for ( var v in props ){
if ( fbCSS[ v ] !== undefined ) {
if ( fbCSS[ props[ v ] ] !== undefined ) {
return true;
}
}