});\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