Skip to content
Permalink
Browse files
We don't have IE9 supports grid yet, completely didn't see this while…
… refactoring.
  • Loading branch information
jaubourg committed Jun 11, 2012
1 parent 60e7adb commit eb7a7af
Showing 1 changed file with 8 additions and 6 deletions.
@@ -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() {
for ( var i in expected ) {
if ( jQuery.isAjax || i !== "ajax" && i !== "cors" ) {
equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]);
if ( expected ) {
test("Verify that the support tests resolve as expected per browser", function() {
for ( var i in expected ) {
if ( jQuery.ajax || i !== "ajax" && i !== "cors" ) {
equal( jQuery.support[i], expected[i], "jQuery.support['" + i + "']: " + jQuery.support[i] + ", expected['" + i + "']: " + expected[i]);
}
}
}
});
});
}

})();

0 comments on commit eb7a7af

Please sign in to comment.