Added test for #895
[jquery.git] / src / selector / selectorTest.js
index aded7cd..03e72f2 100644 (file)
@@ -1,28 +1,30 @@
 module("selector");\r
 \r
 test("expressions - element", function() {\r
-       expect(7);\r
+       expect(6);\r
        ok( $("*").size() >= 30, "Select all" );\r
        t( "Element Selector", "div", ["main","foo"] );\r
        t( "Element Selector", "body", ["body"] );\r
        t( "Element Selector", "html", ["html"] );\r
        t( "Parent Element", "div div", ["foo"] );\r
-       t( "Object/Param element", "#object1 param", ["param1", "param2"] );\r
-       ok( $("param", $("#object1")[0]).length == 2, "Object/param as context" );\r
+       ok( $("param", "#object1").length == 2, "Object/param as context" );\r
 });\r
 \r
 test("expressions - id", function() {\r
-       expect(8);\r
+       expect(10);\r
        t( "ID Selector", "#body", ["body"] );\r
        t( "ID Selector w/ Element", "body#body", ["body"] );\r
        t( "ID Selector w/ Element", "ul#first", [] );\r
+       t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] );\r
+       t( "ID selector with non-existing descendant", "#firstp #foobar", [] );\r
        \r
        t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] );  // bug #267\r
        t( "ID Selector, not an ancestor ID", "#form  #first", [] );\r
        t( "ID Selector, not a child ID", "#form > #option1a", [] );\r
        \r
-       t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"]  );\r
-       t( "All Children of ID with no children", "#firstUL/*", []  );\r
+       t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] );\r
+       t( "All Children of ID with no children", "#firstUL/*", [] );\r
+       \r
 });\r
 \r
 \r