mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Landing pull request 453. Typo correction strictEquals=>strictEqual. Fixes #9964.
More Details: - https://github.com/jquery/jquery/pull/453 - http://bugs.jquery.com/ticket/9964
This commit is contained in:
parent
27291ff06d
commit
905e8920f9
@ -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" );
|
||||
|
Loading…
Reference in New Issue
Block a user