]> source.dussan.org Git - jquery.git/commitdiff
Discontinued the test for $(form.elements).
authorJohn Resig <jeresig@gmail.com>
Mon, 14 Jan 2008 20:40:05 +0000 (20:40 +0000)
committerJohn Resig <jeresig@gmail.com>
Mon, 14 Jan 2008 20:40:05 +0000 (20:40 +0000)
test/unit/core.js

index 1d8fb6d9960a334f05bd2ab20da5837f8ba53747..a5a59c3a1c0f4de05f654a214bb0ab90f844cb8a 100644 (file)
@@ -252,11 +252,14 @@ test("get(Number)", function() {
 });
 
 test("add(String|Element|Array|undefined)", function() {
-       expect(9);
+       expect(8);
        isSet( $("#sndp").add("#en").add("#sap").get(), q("sndp", "en", "sap"), "Check elements from document" );
        isSet( $("#sndp").add( $("#en")[0] ).add( $("#sap") ).get(), q("sndp", "en", "sap"), "Check elements from document" );
        ok( $([]).add($("#form")[0].elements).length >= 13, "Check elements from array" );
-       equals( $([]).add($("#form")[0].elements).length, $($("#form")[0].elements).length, "Array in constructor must equals array in add()" );
+
+       // For the time being, we're discontinuing support for $(form.elements) since it's ambiguous in IE
+       // use $([]).add(form.elements) instead.
+       //equals( $([]).add($("#form")[0].elements).length, $($("#form")[0].elements).length, "Array in constructor must equals array in add()" );
        
        var x = $([]).add($("<p id='x1'>xxx</p>")).add($("<p id='x2'>xxx</p>"));
        ok( x[0].id == "x1", "Check on-the-fly element1" );