Bug Tracker

Changeset 5837

Show
Ignore:
Timestamp:
08/21/08 17:08:50 (5 months ago)
Author:
jeresig
Message:

A test was using the old / child selector syntax - updating to the new style.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/jquery/test/unit/selector.js

    r5793 r5837  
    6565     
    6666    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 > *", [] ); 
    6868     
    6969    jQuery('<a name="tName1">tName1 A</a><a name="tName2">tName2 A</a><div id="tName1">tName1 Div</div>').appendTo('#main');