X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=6cea55bcd6404a567f7518ebd97c92331cca192e;hb=c512984303f3d2148c4a755ccb1f41bfcbcf9527;hp=2a00b5c7949affe37cbf445c99d56fd52fbf16be;hpb=2e448273f5674958fcb05073791dadd92fa8bcd0;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 2a00b5c..6cea55b 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -181,7 +181,7 @@ test("pseudo (:) selectors", function() { }); test("basic xpath", function() { - expect(18); + expect(15); ok( jQuery.find("//*").length >= 30, "All Elements (//*)" ); t( "All Div Elements", "//div", ["main","foo"] ); t( "Absolute Path", "/html/body", ["body"] ); @@ -192,9 +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 RegExp w/enclosed braces", "//a[@rel=~/B[okm]+aRk/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"] );