| CODENOTIFIER | HelpYou are not signed inSign in |
Project: jQuery
Revision: 5837
Author: jeresig
Date: 21 Aug 2008 13:08:50
Diff at Trac: http://dev.jquery.com/changeset/5837
Changes:A test was using the old / child selector syntax - updating to the new style.
Files:| ... | ...@@ -64,7 +64,7 @@ | |
| 64 | 64 | t( "ID Selector, not a child ID", "#form > #option1a", [] ); |
| 65 | 65 | |
| 66 | 66 | t( "All Children of ID", "#foo > *", ["sndp", "en", "sap"] ); |
| 67 | t( "All Children of ID with no children", "#firstUL/*", [] ); | |
| 67 | t( "All Children of ID with no children", "#firstUL > *", [] ); | |
| 68 | 68 | |
| 69 | 69 | jQuery('<a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main'); |
| 70 | 70 | equals( jQuery("#tName1")[0].id, 'tName1', "ID selector with same value for a name attribute" ); |