From 4e256bffa320f1fe87f6e4daf17bbb4ed29ae88a Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=B6rn=20Zaefferer?= Date: Wed, 31 Jan 2007 21:25:58 +0000 Subject: [PATCH] Added test for #891 --- src/selector/selectorTest.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 03e72f2..4d25c60 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -127,7 +127,7 @@ test("expressions - pseudo (:) selctors", function() { }); test("expressions - basic xpath", function() { - expect(14); + expect(15); ok( jQuery.find("//*").length >= 30, "All Elements (//*)" ); t( "All Div Elements", "//div", ["main","foo"] ); t( "Absolute Path", "/html/body", ["body"] ); @@ -142,4 +142,8 @@ test("expressions - basic xpath", function() { t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] ); t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","sndp","en","sap"] ); t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] ); + + $("#foo").each(function() { + isSet( $("/p", this).get(), q("sndp", "en", "sap"), "Check XPath context" ); + }); }); \ No newline at end of file -- 1.7.10.4