From: Jörn Zaefferer Date: Wed, 31 Jan 2007 21:25:58 +0000 (+0000) Subject: Added test for #891 X-Git-Url: http://git.asbjorn.it/?a=commitdiff_plain;ds=sidebyside;h=4e256bffa320f1fe87f6e4daf17bbb4ed29ae88a;p=jquery.git Added test for #891 --- 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