mirror of
https://github.com/jquery/jquery.git
synced 2024-11-23 02:54:22 +00:00
Fix the order of the element test arguments.
This commit is contained in:
parent
90a4abd511
commit
97cbd76695
@ -27,8 +27,8 @@ test("element", function() {
|
||||
ok( jQuery("#lengthtest input").length, '<input name="length"> cannot be found under IE, see #945' );
|
||||
|
||||
// Check for unique-ness and sort order
|
||||
same( jQuery("*").get(), jQuery("*, *").get(), "Check for duplicates: *, *" );
|
||||
same( jQuery("p").get(), jQuery("p, div p").get(), "Check for duplicates: p, div p" );
|
||||
same( jQuery("*, *").get(), jQuery("*").get(), "Check for duplicates: *, *" );
|
||||
same( jQuery("p, div p").get(), jQuery("p").get(), "Check for duplicates: p, div p" );
|
||||
|
||||
t( "Checking sort order", "h2, h1", ["qunit-header", "qunit-banner", "qunit-userAgent"] );
|
||||
t( "Checking sort order", "h2:first, h1:first", ["qunit-header", "qunit-banner"] );
|
||||
|
Loading…
Reference in New Issue
Block a user