X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;fp=src%2Fselector%2FselectorTest.js;h=23f44c30dc660269d72519356a2abace0fc98b3a;hb=2fac5e7949ec342c450b2e032509eed0e35cf1ff;hp=857d9c7b02c799dcb94be925dec113b298ff1e1b;hpb=bfe5f891068af9f86d7be288ad0da7b442427d9c;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 857d9c7..23f44c3 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -183,7 +183,7 @@ test("pseudo (:) selectors", function() { }); test("basic xpath", function() { - expect(15); + expect(17); ok( jQuery.find("//*").length >= 30, "All Elements (//*)" ); t( "All Div Elements", "//div", ["main","foo"] ); t( "Absolute Path", "/html/body", ["body"] ); @@ -194,6 +194,8 @@ 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"] );