// Check removeWith list
excludeList( removeWith[ module ] );
} else {
- grunt.log.error( "Module \"" + module + "\" is a mimimum requirement.");
+ grunt.log.error( "Module \"" + module + "\" is a minimum requirement.");
if ( module === "selector" ) {
grunt.log.error(
"If you meant to replace Sizzle, use -sizzle instead."
test("jQuery.data(window)", 25, function() {
// remove bound handlers from window object to stop potential false positives caused by fix for #5280 in
// transports/xhr.js
- jQuery( window ).off( "unload" );
+ jQuery( window ).off( "unload" );
dataTests( window );
});
expect(1);
equal(result, "ok", "enumeration of data- attrs on body" );
-});
\ No newline at end of file
+});
t( "ID Selector w/ Element", "body#body", ["body"] );
t( "ID Selector w/ Element", "ul#first", [] );
t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] );
- t( "ID selector with non-existant descendant", "#firstp #foobar", [] );
+ t( "ID selector with non-existent descendant", "#firstp #foobar", [] );
t( "ID selector using UTF8", "#台北Táiběi", ["台北Táiběi"] );
t( "Multiple ID selectors using UTF8", "#台北Táiběi, #台北", ["台北Táiběi","台北"] );
t( "Descendant ID selector using UTF8", "div #台北", ["台北"] );
t( "ID Selector on Form with an input that has a name of 'id'", "#lengthtest", ["lengthtest"] );
- t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986
+ t( "ID selector with non-existent ancestor", "#asdfasdf #foobar", [] ); // bug #986
t( "Underscore ID", "#types_all", ["types_all"] );
t( "Dash ID", "#qunit-fixture", ["qunit-fixture"] );
nothiddendiv = document.getElementById("nothiddendiv");
- t( "Non-existant ancestors", ".fototab > .thumbnails > a", [] );
+ t( "Non-existent ancestors", ".fototab > .thumbnails > a", [] );
});
test("attributes", function() {