Skip to content

Commit

Permalink
We don't have IE9 supports grid yet, completely didn't see this while…
Browse files Browse the repository at this point in the history
… refactoring.
  • Loading branch information
jaubourg committed Jun 11, 2012
1 parent 60e7adb commit eb7a7af
Showing 1 changed file with 8 additions and 6 deletions.
14 changes: 8 additions & 6 deletions test/unit/support.js
Original file line number Diff line number Diff line change
Expand Up @@ -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]);
}
}
}
});
});
}

})();

Expand Down

0 comments on commit eb7a7af

Please sign in to comment.