Added logic for not using getElementsByClassName in different failure states. Fixes...
[jquery.git] / test / unit / selector.js
index 07671c6..e85fce7 100644 (file)
@@ -28,8 +28,8 @@ if ( location.protocol != "file:" ) {
                        equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" );
                        equals( jQuery("property[name=prop2]", xml).length, 1, "Attribute selector with name" );
                        equals( jQuery("[name=prop2]", xml).length, 1, "Attribute selector with name" );
-                       equals( jQuery("#seite1", xml).length, 1, "Attribute selector with name" );
-                       equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with name" );
+                       equals( jQuery("#seite1", xml).length, 1, "Attribute selector with ID" );
+                       equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with ID" );
                        start();
                });
        });
@@ -56,7 +56,7 @@ test("broken", function() {
 });
 
 test("id", function() {
-       expect(25);
+       expect(27);
        t( "ID Selector", "#body", ["body"] );
        t( "ID Selector w/ Element", "body#body", ["body"] );
        t( "ID Selector w/ Element", "ul#first", [] );
@@ -89,10 +89,13 @@ test("id", function() {
        t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986
 
        isSet( jQuery("body").find("div#form"), [], "ID selector within the context of another element" );
+
+       t( "Underscore ID", "#types_all", ["types_all"] );
+       t( "Dash ID", "#fx-queue", ["fx-queue"] );
 });
 
 test("class", function() {
-       expect(16);
+       expect(18);
        t( "Class Selector", ".blog", ["mark","simon"] );
        t( "Class Selector", ".GROUPS", ["groups"] );
        t( "Class Selector", ".blog.link", ["simon"] );
@@ -112,6 +115,14 @@ test("class", function() {
        t( "Descendant scaped Class", "div .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
        t( "Child escaped Class", "form > .foo\\:bar", ["foo:bar"] );
        t( "Child escaped Class", "form > .test\\.foo\\[5\\]bar", ["test.foo[5]bar"] );
+
+       var div = document.createElement("div");
+  div.innerHTML = "<div class='test e'></div><div class='test'></div>";
+       isSet( jQuery(".e", div), [ div.firstChild ], "Finding a second class." );
+
+       div.lastChild.className = "e";
+
+       isSet( jQuery(".e", div), [ div.firstChild, div.lastChild ], "Finding a modified class." );
 });
 
 test("name", function() {
@@ -295,7 +306,7 @@ test("pseudo (:) selectors", function() {
        t( "Check position filtering", "select:lt(2) :not(:first)", ["option1b", "option1c", "option1d", "option2a", "option2b", "option2c", "option2d"] );
        t( "Check position filtering", "div.nothiddendiv:eq(0)", ["nothiddendiv"] );
        t( "Check position filtering", "div.nothiddendiv:last", ["nothiddendiv"] );
-       t( "Check position filtering", "div.nothiddendiv:not(:gt(0))", ["nothiddendiv"] );
+       t( "Check position filtering", "div.nothiddendiv:not(:lt(0))", ["nothiddendiv"] );
 
        t( "Check element position", "div div:eq(0)", ["nothiddendivchild"] );
        t( "Check element position", "div div:eq(5)", ["fadeout"] );