X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=2cd7db0b626a08f85de7ac3d4540ae11dad318bd;hb=7fa12b412b7e965ca7a37c9281dd6321c2fe284c;hp=07e4d50f0457de2bced4565bb2f238167715f262;hpb=fce2bdf7ff1d5a293690c65de36a7824a50bc54f;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 07e4d50..2cd7db0 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -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,11 +192,9 @@ 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"] ); + t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","table","sndp","en","sap"] ); + t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","table","sndp","en","sap"] ); t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] ); $("#foo").each(function() {