Added a fix for IE returning comment nodes in * queries. I put the logic in $.merge...
[jquery.git] / src / selector / selectorTest.js
index 9e646ce..7644fbe 100644 (file)
@@ -3,6 +3,11 @@ module("selector");
 test("element", function() {
        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"] );
@@ -11,10 +16,19 @@ test("element", function() {
        
        ok( $("#length").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
        ok( $("#lengthtest input").length, '&lt;input name="length"&gt; cannot be found under IE, see #945' );
-
-       t( "Element Selector with underscore", "foo_bar", ["foobar"] );
 });
 
+if ( location.protocol != "file:" ) {
+       test("Element Selector with underscore", function() {
+               expect(1);
+               stop();
+               $.get("data/with_fries.xml", function(xml) {
+                       ok( $("foo_bar", xml).length == 1, "Element Selector with underscore" );
+                       start();
+               });
+       });
+}
+
 test("broken", function() {
        expect(7);
        t( "Broken Selector", "[", [] );