X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=2a00b5c7949affe37cbf445c99d56fd52fbf16be;hb=13d2ef9282db6be4a0030ce1319948410f0bd2b6;hp=939edbe0db67828f093d3bf418a47e90d760cd2a;hpb=e95a6cc746f9217fa285a87c2e9c0705babf2824;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 939edbe..2a00b5c 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -181,7 +181,7 @@ test("pseudo (:) selectors", function() { }); test("basic xpath", function() { - expect(17); + expect(18); ok( jQuery.find("//*").length >= 30, "All Elements (//*)" ); t( "All Div Elements", "//div", ["main","foo"] ); t( "Absolute Path", "/html/body", ["body"] ); @@ -193,6 +193,7 @@ test("basic xpath", function() { 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"] );