We don't have IE9 supports grid yet, completely didn't see this while refactoring.

This commit is contained in:
jaubourg 2012-06-11 19:04:44 +02:00
parent 60e7adb3f4
commit eb7a7af46a

View File

@ -245,13 +245,15 @@ testIframeWithCallback( "A background on the testElement does not cause IE8 to c
}; };
} }
test("Verify that the support tests resolve as expected per browser", function() { if ( expected ) {
for ( var i in expected ) { test("Verify that the support tests resolve as expected per browser", function() {
if ( jQuery.isAjax || i !== "ajax" && i !== "cors" ) { for ( var i in expected ) {
equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]); if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) {
equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]);
}
} }
} });
}); }
})(); })();