Changeset 5488
- Timestamp:
- 12/18/07 08:08:35 (8 months ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Renderer/VML.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Renderer/VML.js
r5392 r5488 40 40 var style = document.createStyleSheet(); 41 41 style.addRule('v\\:*', "behavior: url(#default#VML); " + 42 "position: relative; display: inline-block;");42 "position: absolute; display: inline-block;"); 43 43 } 44 44 OpenLayers.Renderer.Elements.prototype.initialize.apply(this, … … 100 100 this.rendererRoot.style.height = this.size.h; 101 101 102 this.root.style.width = "100%";103 this.root.style.height = "100%";102 this.root.style.width = this.size.w; 103 this.root.style.height = this.size.h; 104 104 }, 105 105
