Docs: Fix typos found by codespell

Closes gh-5165
This commit is contained in:
Dimitri Papadopoulos Orfanos 2023-06-28 00:29:29 +02:00 committed by GitHub
parent 5701957b72
commit 620870a1af
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 7 additions and 7 deletions

View File

@ -75,7 +75,7 @@ function domManip( collection, args, callback, ignored ) {
if ( hasScripts ) { if ( hasScripts ) {
doc = scripts[ scripts.length - 1 ].ownerDocument; doc = scripts[ scripts.length - 1 ].ownerDocument;
// Reenable scripts // Re-enable scripts
jQuery.map( scripts, restoreScript ); jQuery.map( scripts, restoreScript );
// Evaluate executable scripts on first document insertion // Evaluate executable scripts on first document insertion

View File

@ -2711,7 +2711,7 @@ if ( typeof window.ArrayBuffer === "undefined" || typeof new XMLHttpRequest().re
} ); } );
QUnit.test( QUnit.test(
"jQuery#load() - always use GET method even if it overrided through ajaxSetup (trac-11264)", "jQuery#load() - always use GET method even if overridden through ajaxSetup (trac-11264)",
function( assert ) { function( assert ) {
assert.expect( 1 ); assert.expect( 1 );
var done = assert.async(); var done = assert.async();

View File

@ -1409,13 +1409,13 @@ QUnit.testUnlessIE( "css('width') and css('height') should return fractional val
"css('height') should return fractional values" ); "css('height') should return fractional values" );
} ); } );
QUnit.test( "certain css values of 'normal' should be convertable to a number, see trac-8627", function( assert ) { QUnit.test( "certain css values of 'normal' should be convertible to a number, see trac-8627", function( assert ) {
assert.expect( 3 ); assert.expect( 3 );
var el = jQuery( "<div style='letter-spacing:normal;font-weight:normal;'>test</div>" ).appendTo( "#qunit-fixture" ); var el = jQuery( "<div style='letter-spacing:normal;font-weight:normal;'>test</div>" ).appendTo( "#qunit-fixture" );
assert.ok( !isNaN( parseFloat( el.css( "letterSpacing" ) ) ), "css('letterSpacing') not convertable to number, see trac-8627" ); assert.ok( !isNaN( parseFloat( el.css( "letterSpacing" ) ) ), "css('letterSpacing') not convertible to number, see trac-8627" );
assert.ok( !isNaN( parseFloat( el.css( "fontWeight" ) ) ), "css('fontWeight') not convertable to number, see trac-8627" ); assert.ok( !isNaN( parseFloat( el.css( "fontWeight" ) ) ), "css('fontWeight') not convertible to number, see trac-8627" );
assert.equal( typeof el.css( "fontWeight" ), "string", ".css() returns a string" ); assert.equal( typeof el.css( "fontWeight" ), "string", ".css() returns a string" );
} ); } );

View File

@ -190,8 +190,8 @@ QUnit[ QUnit.jQuerySelectors ? "test" : "skip" ]( "is() with :has() selectors",
assert.ok( jQuery( "#foo" ).is( ":has(p)" ), "Check for child: Expected a child 'p' element" ); assert.ok( jQuery( "#foo" ).is( ":has(p)" ), "Check for child: Expected a child 'p' element" );
assert.ok( !jQuery( "#foo" ).is( ":has(ul)" ), "Check for child: Did not expect 'ul' element" ); assert.ok( !jQuery( "#foo" ).is( ":has(ul)" ), "Check for child: Did not expect 'ul' element" );
assert.ok( jQuery( "#foo" ).is( ":has(p):has(a):has(code)" ), "Check for childs: Expected 'p', 'a' and 'code' child elements" ); assert.ok( jQuery( "#foo" ).is( ":has(p):has(a):has(code)" ), "Check for children: Expected 'p', 'a' and 'code' child elements" );
assert.ok( !jQuery( "#foo" ).is( ":has(p):has(a):has(code):has(ol)" ), "Check for childs: Expected 'p', 'a' and 'code' child elements, but no 'ol'" ); assert.ok( !jQuery( "#foo" ).is( ":has(p):has(a):has(code):has(ol)" ), "Check for children: Expected 'p', 'a' and 'code' child elements, but no 'ol'" );
assert.ok( jQuery( "#foo" ).is( jQuery( "div:has(p)" ) ), "Check for child: Expected a child 'p' element" ); assert.ok( jQuery( "#foo" ).is( jQuery( "div:has(p)" ) ), "Check for child: Expected a child 'p' element" );
assert.ok( !jQuery( "#foo" ).is( jQuery( "div:has(ul)" ) ), "Check for child: Did not expect 'ul' element" ); assert.ok( !jQuery( "#foo" ).is( jQuery( "div:has(ul)" ) ), "Check for child: Did not expect 'ul' element" );