Changeset 12845
- Timestamp:
- 03/03/08 14:12:44 (9 months ago)
- Files:
-
- 1 modified
-
dijit/trunk/tests/_base/manager.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/tests/_base/manager.html
r12844 r12845 87 87 t.is(null, dijit.getFirstInTabbingOrder("a-without-href-container")); 88 88 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 90 93 if(!dojo.isSafari){ 91 94 t.is("area", dijit.getFirstInTabbingOrder("area-map").id); 92 95 } 96 93 97 t.is("button", dijit.getFirstInTabbingOrder("button-container").id); 94 98 t.is("input", dijit.getFirstInTabbingOrder("input-container").id); … … 99 103 t.is(null, dijit.getLastInTabbingOrder("a-without-href-container")); 100 104 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 102 109 if(!dojo.isSafari){ 103 110 t.is("area", dijit.getLastInTabbingOrder("area-map").id); 104 111 } 112 105 113 t.is("button", dijit.getLastInTabbingOrder("button-container").id); 106 114 t.is("input", dijit.getLastInTabbingOrder("input-container").id);