From 7fa12b412b7e965ca7a37c9281dd6321c2fe284c Mon Sep 17 00:00:00 2001 From: John Resig Date: Tue, 1 May 2007 21:36:01 +0000 Subject: [PATCH] Rev [1827] broke the two XPath sibling selectors. --- src/selector/selectorTest.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 6cea55b..2cd7db0 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -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() { -- 1.7.10.4