X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=7644fbea8c92474c813344b68a387aed6a5117ed;hb=24db022ba06523f92e94ac5fa791fc4865b55ba7;hp=ac07bf32dc1a7a01a2de34e75fef8af4dd94d3db;hpb=735e2e8197e391c2666766d2b2ba924fe5fb73d8;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index ac07bf3..7644fbe 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -1,8 +1,13 @@ module("selector"); test("element", function() { - expect(8); + expect(9); ok( $("*").size() >= 30, "Select all" ); + var all = $("*"), good = true; + for ( var i = 0; i < all.length; i++ ) + if ( all[i].nodeType == 8 ) + good = false; + ok( good, "Select all elements, no comment nodes" ); t( "Element Selector", "p", ["firstp","ap","sndp","en","sap","first"] ); t( "Element Selector", "body", ["body"] ); t( "Element Selector", "html", ["html"] );