We're not adding new selector features in until a new full release. Please discuss...
[jquery.git] / src / selector / selectorTest.js
index 07e4d50..6cea55b 100644 (file)
@@ -90,7 +90,7 @@ test("multiple", function() {
 });
 
 test("child and adjacent", function() {
-       expect(22);
+       expect(18);
        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"] );
@@ -107,15 +107,11 @@ test("child and adjacent", function() {
        
        t( "First Child", "p:first-child", ["firstp","sndp"] );
        t( "Nth Child", "p:nth-child(1)", ["firstp","sndp"] );
-       t( "First Child, XPath", "p[1]", ["firstp","sndp"] );
        
        t( "Last Child", "p:last-child", ["sap"] );
-       t( "Last Child, XPath", "p[3]", ["sap"] );
        
        t( "Nth-child", "#main form > *:nth-child(2)", ["text2"] );
-       t( "Nth-child, XPath", "#main form > *[2]", ["text2"] );
        t( "Nth-child", "#main form > :nth-child(2)", ["text2"] );
-       t( "Nth-child, XPath", "#main form > [2]", ["text2"] );
 });
 
 test("attributes", function() {
@@ -185,7 +181,7 @@ test("pseudo (:) selectors", function() {
 });
 
 test("basic xpath", function() {
-       expect(17);
+       expect(15);
        ok( jQuery.find("//*").length >= 30, "All Elements (//*)" );
        t( "All Div Elements", "//div", ["main","foo"] );
        t( "Absolute Path", "/html/body", ["body"] );
@@ -196,8 +192,6 @@ test("basic xpath", function() {
        t( "All Children, Implicit", "//code/", ["anchor1","anchor2"] );
        t( "Attribute Exists", "//a[@title]", ["google"] );
        t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
-       t( "Attribute RegExp", "//a[@rel=~/BooKmaRk/i]", ["simon1"] );
-       t( "Attribute Inverse RegExp", "//a[@id!~/mon/]", ["google","groups","anchor1","mark","yahoo","anchor2"] );
        t( "Parent Axis", "//p/..", ["main","foo"] );
        t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","sndp","en","sap"] );
        t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","sndp","en","sap"] );