Changeset 2119
- Timestamp:
- 01/02/07 17:37:35 (2 years ago)
- Files:
-
- trunk/openlayers/tests/test_Marker.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/tests/test_Marker.html
r1541 r2119 46 46 } 47 47 48 function test_0 2_Marker_setOpacity(t) {48 function test_03_Marker_setOpacity(t) { 49 49 t.plan( 2 ); 50 50 … … 70 70 marker.setOpacity(0.5); 71 71 72 t.eq( marker.icon.imageDiv.style.opacity + "", "0.5", "marker.setOpacity() works");72 t.eq(parseFloat(marker.icon.imageDiv.style.opacity), 0.5, "marker.setOpacity() works"); 73 73 } 74 74
