X-Git-Url: http://git.asbjorn.it/?a=blobdiff_plain;f=src%2Fselector%2FselectorTest.js;h=c9cf762a57f848d9bc4c0e24295e45e925c12bf4;hb=44599e174b5d1f924def5a3950375ead12b9d21b;hp=4d25c6076e4fd611f9993d47f1e5f23bdefc26aa;hpb=4e256bffa320f1fe87f6e4daf17bbb4ed29ae88a;p=jquery.git diff --git a/src/selector/selectorTest.js b/src/selector/selectorTest.js index 4d25c60..c9cf762 100644 --- a/src/selector/selectorTest.js +++ b/src/selector/selectorTest.js @@ -11,12 +11,12 @@ test("expressions - element", function() { }); test("expressions - id", function() { - expect(10); + expect(13); t( "ID Selector", "#body", ["body"] ); t( "ID Selector w/ Element", "body#body", ["body"] ); t( "ID Selector w/ Element", "ul#first", [] ); t( "ID selector with existing ID descendant", "#firstp #simon1", ["simon1"] ); - t( "ID selector with non-existing descendant", "#firstp #foobar", [] ); + t( "ID selector with non-existant descendant", "#firstp #foobar", [] ); t( "ID Selector, child ID present", "#form > #radio1", ["radio1"] ); // bug #267 t( "ID Selector, not an ancestor ID", "#form #first", [] ); @@ -25,6 +25,11 @@ test("expressions - id", function() { t( "All Children of ID", "#foo/*", ["sndp", "en", "sap"] ); t( "All Children of ID with no children", "#firstUL/*", [] ); + $('tName1 AtName2 A
tName1 Div
').appendTo('#main'); + ok( $("#tName1")[0].id == 'tName1', "ID selector with same value for a name attribute" ); + ok( $("#tName2").length == 0, "ID selector non-existing but name attribute on an A tag" ); + + t( "ID selector with non-existant ancestor", "#asdfasdf #foobar", [] ); // bug #986 }); @@ -146,4 +151,4 @@ test("expressions - basic xpath", function() { $("#foo").each(function() { isSet( $("/p", this).get(), q("sndp", "en", "sap"), "Check XPath context" ); }); -}); \ No newline at end of file +});