CHILD positions were being cached improperly. Tweaked it and added a test to make...
[jquery.git] / test / unit / selector.js
index 638f508..4e6feaf 100644 (file)
@@ -141,7 +141,7 @@ test("multiple", function() {
 });
 
 test("child and adjacent", function() {
-       expect(41);
+       expect(45);
        t( "Child", "p > a", ["simon1","google","groups","mark","yahoo","simon"] );
        t( "Child", "p> a", ["simon1","google","groups","mark","yahoo","simon"] );
        t( "Child", "p >a", ["simon1","google","groups","mark","yahoo","simon"] );
@@ -156,6 +156,11 @@ test("child and adjacent", function() {
        t( "Adjacent", "p + p", ["ap","en","sap"] );
        t( "Comma, Child, and Adjacent", "a + a, code > a", ["groups","anchor1","anchor2"] );
 
+       t( "Verify deep class selector", "div.blah > p > a", [] );
+
+       t( "No element deep selector", "div.foo > span > a", [] );
+       t( "No element not selector", ".container div:not(.excluded) div", [] );
+
        isSet( jQuery("> :first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
        isSet( jQuery("> :eq(0)", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
        isSet( jQuery("> *:first", document.getElementById("nothiddendiv")), q("nothiddendivchild"), "Verify child context positional selctor" );
@@ -164,6 +169,14 @@ test("child and adjacent", function() {
        
        t( "First Child", "p:first-child", ["firstp","sndp"] );
        t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
+
+       // Verify that the child position isn't being cached improperly
+       jQuery("p:first-child").after("<div></div>");
+       jQuery("p:first-child").before("<div></div>").next().remove();
+
+       t( "First Child", "p:first-child", [] );
+
+       reset();
        
        t( "Last Child", "p:last-child", ["sap"] );
        t( "Last Child", "a:last-child", ["simon1","anchor1","mark","yahoo","anchor2","simon"] );
@@ -192,7 +205,7 @@ test("child and adjacent", function() {
 });
 
 test("attributes", function() {
-       expect(27);
+       expect(34);
        t( "Attribute Exists", "a[title]", ["google"] );
        t( "Attribute Exists", "*[title]", ["google"] );
        t( "Attribute Exists", "[title]", ["google"] );
@@ -216,6 +229,14 @@ test("attributes", function() {
        if ( document.querySelectorAll ) {
                results = ["radio1", "radio2", "hidden1"];
        }
+
+       t( "Attribute containing []", "input[name^='foo[']", ["hidden2"] );
+       t( "Attribute containing []", "input[name^='foo[bar]']", ["hidden2"] );
+       t( "Attribute containing []", "input[name*='[bar]']", ["hidden2"] );
+       t( "Attribute containing []", "input[name$='bar]']", ["hidden2"] );
+       t( "Attribute containing []", "input[name$='[bar]']", ["hidden2"] );
+       t( "Attribute containing []", "input[name$='foo[bar]']", ["hidden2"] );
+       t( "Attribute containing []", "input[name*='foo[bar]']", ["hidden2"] );
        
        t( "Multiple Attribute Equals", "#form input[type='hidden'],#form input[type='radio']", results );
        t( "Multiple Attribute Equals", "#form input[type=\"hidden\"],#form input[type='radio']", results );
@@ -239,7 +260,7 @@ test("attributes", function() {
 });
 
 test("pseudo (:) selectors", function() {
-       expect(34);
+       expect(53);
        t( "First Child", "p:first-child", ["firstp","sndp"] );
        t( "Last Child", "p:last-child", ["sap"] );
        t( "Only Child", "a:only-child", ["simon1","anchor1","yahoo","anchor2"] );
@@ -250,6 +271,10 @@ test("pseudo (:) selectors", function() {
        t( "Selected Option Element", "#form option:selected", ["option1a","option2d","option3b","option3c"] );
        t( "Text Contains", "a:contains('Google')", ["google","groups"] );
        t( "Text Contains", "a:contains('Google Groups')", ["groups"] );
+
+       t( "Text Contains", "a:contains('Google Groups (Link)')", ["groups"] );
+       t( "Text Contains", "a:contains('(Link)')", ["groups"] );
+
        t( "Element Preceded By", "p ~ div", ["foo","fx-queue","fx-tests", "moretests","tabindex-tests"] );
        t( "Not", "a.blog:not(.link)", ["mark"] );
        t( "Not - multiple", "#form option:not(:contains('Nothing'),#option1b,:selected)", ["option1c", "option1d", "option2b", "option2c", "option3d", "option3e"] );
@@ -267,6 +292,25 @@ test("pseudo (:) selectors", function() {
        t( "Is A Parent", "p:parent", ["firstp","ap","sndp","en","sap","first"] );
        t( "Is Visible", "#form input:visible", ["text1","text2","radio1","radio2","check1","check2","name"] );
        t( "Is Hidden", "#form input:hidden", ["hidden1","hidden2"] );
+
+       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", "#foo > :not(:first)", ["en", "sap"] );
+       t( "Check position filtering", "select > :not(:gt(2))", ["option1a", "option1b", "option1c"] );
+       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 element position", "div div:eq(0)", ["nothiddendivchild"] );
+       t( "Check element position", "div div:eq(5)", ["fadeout"] );
+       t( "Check element position", "div div:eq(27)", ["t2037"] );
+       t( "Check element position", "div div:first", ["nothiddendivchild"] );
+       t( "Check element position", "div > div:first", ["nothiddendivchild"] );
+       t( "Check element position", "#dl div:first div:first", ["foo"] );
+       t( "Check element position", "#dl div:first > div:first", ["foo"] );
+       t( "Check element position", "div#nothiddendiv:first > div:first", ["nothiddendivchild"] );
        
        t( "Form element :input", "#form :input", ["text1", "text2", "radio1", "radio2", "check1", "check2", "hidden1", "hidden2", "name", "button", "area1", "select1", "select2", "select3"] );
        t( "Form element :radio", "#form :radio", ["radio1", "radio2"] );