Ticket #965: vml-renderer.patch
| File vml-renderer.patch, 1.1 kB (added by pgiraud, 1 year ago) |
|---|
-
/home/pierre/public_html/openlayers_965/lib/OpenLayers/Renderer/VML.js
old new 38 38 document.namespaces.add("v", this.xmlns); 39 39 var style = document.createStyleSheet(); 40 40 style.addRule('v\\:*', "behavior: url(#default#VML); " + 41 "position: relative; display: inline-block;");41 "position: absolute; display: inline-block;"); 42 42 OpenLayers.Renderer.Elements.prototype.initialize.apply(this, 43 43 arguments); 44 44 }, … … 98 98 this.rendererRoot.style.width = this.size.w; 99 99 this.rendererRoot.style.height = this.size.h; 100 100 101 this.root.style.width = "100%";102 this.root.style.height = "100%";101 this.root.style.width = this.size.w; 102 this.root.style.height = this.size.h; 103 103 }, 104 104 105 105 /**
