Changeset 12845

Show
Ignore:
Timestamp:
03/03/08 14:12:44 (9 months ago)
Author:
simonjb
Message:

Clarified comment on test excluded in Safari in dijit/tests/_base/manager.html; refs #6013

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/tests/_base/manager.html

    r12844 r12845  
    8787                                                t.is(null, dijit.getFirstInTabbingOrder("a-without-href-container")); 
    8888                                                t.is("a-with-href", dijit.getFirstInTabbingOrder("a-with-href-container").id); 
    89                                                 // Safari treats area elements differently. 
     89 
     90                                                // in Safari area elements are not in the tab order 
     91                                                // and their display style property is "none"; 
     92                                                // therefore it is expected that this test will fail 
    9093                                                if(!dojo.isSafari){ 
    9194                                                        t.is("area", dijit.getFirstInTabbingOrder("area-map").id); 
    9295                                                } 
     96 
    9397                                                t.is("button", dijit.getFirstInTabbingOrder("button-container").id); 
    9498                                                t.is("input", dijit.getFirstInTabbingOrder("input-container").id); 
     
    99103                                                t.is(null, dijit.getLastInTabbingOrder("a-without-href-container")); 
    100104                                                t.is("a-with-href", dijit.getLastInTabbingOrder("a-with-href-container").id); 
    101                                                 // Safari treats area elements differently. 
     105 
     106                                                // in Safari area elements are not in the tab order 
     107                                                // and their display style property is "none"; 
     108                                                // therefore it is expected that this test will fail 
    102109                                                if(!dojo.isSafari){ 
    103110                                                        t.is("area", dijit.getLastInTabbingOrder("area-map").id); 
    104111                                                } 
     112 
    105113                                                t.is("button", dijit.getLastInTabbingOrder("button-container").id); 
    106114                                                t.is("input", dijit.getLastInTabbingOrder("input-container").id);