X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;ds=sidebyside;f=src%2Fselector%2FselectorTest.js;fp=src%2Fselector%2FselectorTest.js;h=7a4789a80a1a9d26a6046acfc7912625d1f6dcea;hb=46e770352a9d68fe72a2cf59fc2d18fe61669730;hp=7644fbea8c92474c813344b68a387aed6a5117ed;hpb=c8bd6e0a4aef14ad4808a63fc106849918ea4666;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 7644fbe..7a4789a 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -197,7 +197,7 @@ test("pseudo (:) selectors", function() { }); test("basic xpath", function() { - expect(16); + expect(17); ok( jQuery.find("//*").length >= 30, "All Elements (//*)" ); ok( jQuery.find("//div", q("main")[0])[0] = q("foo")[0], "All Relative (#main//div)" ); t( "All P Elements", "//p", ["firstp","ap","sndp","en","sap","first"] ); @@ -213,6 +213,7 @@ test("basic xpath", function() { t( "Sibling Axis", "//p/../", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","table","fx-queue","fx-tests","sndp","en","sap"] ); t( "Sibling Axis", "//p/../*", ["firstp","ap","foo","first","firstUL","empty","form","floatTest","iframe","lengthtest","table","fx-queue","fx-tests","sndp","en","sap"] ); t( "Has Children", "//p[a]", ["firstp","ap","en","sap"] ); + t( "Has Children - :has()", "//p:has(a)", ["firstp","ap","en","sap"] ); $("#foo").each(function() { isSet( $("/p", this).get(), q("sndp", "en", "sap"), "Check XPath context" );