Skip to content
Permalink
Browse files
Rev [1827] broke the two XPath sibling selectors.
  • Loading branch information
jeresig committed May 1, 2007
1 parent c512984 commit 7fa12b4
Showing 1 changed file with 2 additions and 2 deletions.
@@ -193,8 +193,8 @@ test("basic xpath", function() {
t( "Attribute Exists", "//a[@title]", ["google"] );
t( "Attribute Equals", "//a[@rel='bookmark']", ["simon1"] );
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() {

0 comments on commit 7fa12b4

Please sign in to comment.