Add RegExp style xpath attributes and testcases. e.g. [@foo =~ /bar/i] and [@foo !~ /bar/]
This commit is contained in:
parent
bfe5f89106
commit
2fac5e7949
2 changed files with 7 additions and 2 deletions
|
@ -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"] );
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue