A follow-up for bug #3945. ID selectors don't work in querySelectorAll on XML documen...
[jquery.git] / test / unit / selector.js
index 07671c6..a648e33 100644 (file)
@@ -28,8 +28,8 @@ if ( location.protocol != "file:" ) {
                        equals( jQuery("foo_bar", xml).length, 1, "Element Selector with underscore" );
                        equals( jQuery("property[name=prop2]", xml).length, 1, "Attribute selector with name" );
                        equals( jQuery("[name=prop2]", xml).length, 1, "Attribute selector with name" );
-                       equals( jQuery("#seite1", xml).length, 1, "Attribute selector with name" );
-                       equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with name" );
+                       equals( jQuery("#seite1", xml).length, 1, "Attribute selector with ID" );
+                       equals( jQuery("component#seite1", xml).length, 1, "Attribute selector with ID" );
                        start();
                });
        });