Changeset 6581
- Timestamp:
- 03/25/08 13:29:11 (6 months ago)
- Files:
-
- trunk/openlayers/lib/OpenLayers/Renderer/SVG.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/openlayers/lib/OpenLayers/Renderer/SVG.js
r6515 r6581 63 63 */ 64 64 supported: function() { 65 var svgFeature = "http://www.w3.org/TR/SVG11/feature# SVG";65 var svgFeature = "http://www.w3.org/TR/SVG11/feature#"; 66 66 return (document.implementation && 67 (document.implementation.hasFeature("org.w3c.svg", "1.0") || 68 document.implementation.hasFeature(svgFeature, "1.1"))); 67 (document.implementation.hasFeature("org.w3c.svg", "1.0") || 68 document.implementation.hasFeature(svgFeature + "SVG", "1.1") || 69 document.implementation.hasFeature(svgFeature + "BasicStructure", "1.1") )); 69 70 }, 70 71
