Changeset 1333
- Timestamp:
- 08/22/06 14:56:12 (2 years ago)
- Files:
-
- branches/openlayers/2.0/tests/test_Control_Permalink.html (modified) (1 diff)
- branches/openlayers/2.0/tests/test_Layer.html (modified) (1 diff)
- branches/openlayers/2.0/tests/test_Layer_EventPane.html (modified) (1 diff)
- branches/openlayers/2.0/tests/test_Layer_Grid.html (modified) (1 diff)
- branches/openlayers/2.0/tests/test_Layer_KaMap.html (modified) (1 diff)
- branches/openlayers/2.0/tests/test_Map.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/openlayers/2.0/tests/test_Control_Permalink.html
r847 r1333 21 21 map.addControl(control); 22 22 map.pan(5, 0); 23 t.eq($('permalink').href, location+"?lat=0&lon=1.75781&zoom=2", "Panning sets permalink"); 23 if (/MSIE/.test(navigator.userAgent)) { 24 t.eq($('permalink').href, "?lat=0&lon=1.75781&zoom=2", "Panning sets permalink"); 25 } else { 26 t.eq($('permalink').href, location+"?lat=0&lon=1.75781&zoom=2", "Panning sets permalink"); 27 } 24 28 } 25 29 function test_03_Control_Permalink_updateLinksBase (t) { branches/openlayers/2.0/tests/test_Layer.html
r1302 r1333 100 100 maxExtent: maxExtent, 101 101 maxResolution: maxResolution, 102 numZoomLevels: numZoomLevels ,102 numZoomLevels: numZoomLevels 103 103 }; 104 104 branches/openlayers/2.0/tests/test_Layer_EventPane.html
r1211 r1333 57 57 // t.plan( 2 ); 58 58 59 t.plan(1); 59 if (document.createEventObject) { 60 t.plan(3); 61 } else { 62 t.plan(1); 63 } 60 64 var map = new OpenLayers.Map('map'); 61 65 branches/openlayers/2.0/tests/test_Layer_Grid.html
r1289 r1333 115 115 * -insertRow 116 116 117 function test_07_Layer_Grid_moveTo(t) {118 } 119 120 function test_08_Layer_Grid_insertColumn(t) {121 } 122 123 function test_09_Layer_Grid_insertRow(t) {117 function 07_Layer_Grid_moveTo(t) { 118 } 119 120 function 08_Layer_Grid_insertColumn(t) { 121 } 122 123 function 09_Layer_Grid_insertRow(t) { 124 124 } 125 125 branches/openlayers/2.0/tests/test_Layer_KaMap.html
r1289 r1333 108 108 * -insertRow 109 109 110 function test_07_Layer_KaMap_moveTo(t) {110 function 07_Layer_KaMap_moveTo(t) { 111 111 } 112 112 113 function test_08_Layer_KaMap_insertColumn(t) {113 function 08_Layer_KaMap_insertColumn(t) { 114 114 } 115 115 116 function test_09_Layer_KaMap_insertRow(t) {116 function 09_Layer_KaMap_insertRow(t) { 117 117 } 118 118 branches/openlayers/2.0/tests/test_Map.html
r1302 r1333 155 155 * Also, it won't work until we figure out the viewSize bug 156 156 157 function test_08_Map_px_lonlat_translation (t) {157 function 08_Map_px_lonlat_translation (t) { 158 158 t.plan( 6 ); 159 159 map = new OpenLayers.Map($('map'));
