]> source.dussan.org Git - jquery.git/commitdiff
Move length tests to jQuery's selector tests as it relates to jQuery.merge.
authortimmywil <timmywillisn@gmail.com>
Mon, 28 May 2012 18:35:01 +0000 (14:35 -0400)
committertimmywil <timmywillisn@gmail.com>
Mon, 28 May 2012 19:07:39 +0000 (15:07 -0400)
src/sizzle
test/unit/selector.js

index 9284760ac2e0518502d9dd4cf1305a2156b36d8c..e82e70ed2e8b79daf9791a14fa8ff67cfb97f187 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 9284760ac2e0518502d9dd4cf1305a2156b36d8c
+Subproject commit e82e70ed2e8b79daf9791a14fa8ff67cfb97f187
index d00dc153e9b1fe2ffb5d26c2e9f972d29b032daa..7902742b1a07b90e2f79f287457ba842c0548eb7 100644 (file)
@@ -5,13 +5,16 @@
 module("selector - jQuery only", { teardown: moduleTeardown });
 
 test("element - jQuery only", function() {
-       expect( 5 );
+       expect( 7 );
 
        deepEqual( jQuery("p", document.getElementsByTagName("div")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
        deepEqual( jQuery("p", "div").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
        deepEqual( jQuery("p", jQuery("div")).get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
        deepEqual( jQuery("div").find("p").get(), q("firstp","ap","sndp","en","sap","first"), "Finding elements with a context." );
 
+       ok( jQuery("#length").length, "\<input name=\"length\"\> cannot be found under IE, see #945" );
+       ok( jQuery("#lengthtest input").length, "\<input name=\"length\"\> cannot be found under IE, see #945" );
+
        //#7533
        equal( jQuery("<div id=\"A'B~C.D[E]\"><p>foo</p></div>").find("p").length, 1, "Find where context root is a node and has an ID with CSS3 meta characters" );
 });