diff options
Diffstat (limited to 'test/unit/support.js')
-rw-r--r-- | test/unit/support.js | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/test/unit/support.js b/test/unit/support.js index 36dc3553e..4733b2529 100644 --- a/test/unit/support.js +++ b/test/unit/support.js @@ -42,14 +42,19 @@ supportIFrameTest( "body background is not lost if set prior to loading jQuery ( for ( i in jQuery.support ) { if ( jQuery.support[ i ] !== support[ i ] ) { passed = false; - strictEquals( jQuery.support[ i ], support[ i ], "Support property " + i + " is different" ); + strictEqual( jQuery.support[ i ], support[ i ], "Support property " + i + " is different" ); } } for ( i in support ) { if ( !( i in jQuery.support ) ) { ok = false; - strictEquals( src[ i ], dest[ i ], "Unexpected property: " + i ); + strictEqual( src[ i ], dest[ i ], "Unexpected property: " + i ); } } ok( passed, "Same support properties" ); }); + +supportIFrameTest( "A background on the testElement does not cause IE8 to crash (#9823)", "testElementCrash", function() { + expect(1); + ok( true, "IE8 does not crash" ); +}); |