Skip to content
Permalink
Browse files
Landing pull request 453. Typo correction strictEquals=>strictEqual. …
…Fixes #9964.

More Details:
 - #453
 - http://bugs.jquery.com/ticket/9964
  • Loading branch information
rwaldron authored and timmywil committed Aug 3, 2011
1 parent 27291ff commit 905e892
Showing 1 changed file with 2 additions and 2 deletions.
@@ -42,13 +42,13 @@ 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" );

0 comments on commit 905e892

Please sign in to comment.