--- lib/OpenLayers/Renderer/SVG.js	2010-11-11 14:20:30.420855553 +0300
+++ lib/OpenLayers/Renderer/SVG.js	2010-11-11 14:21:02.939672237 +0300
@@ -269,6 +269,10 @@
                 
                 if (style.graphicTitle) {
                     node.setAttributeNS(null, "title", style.graphicTitle);
+                    //Standards-conformant SVG
+                    var label = this.nodeFactory(null, "title");
+                    label.textContent = style.graphicTitle;
+                    node.appendChild(label);
                 }
                 if (style.graphicWidth && style.graphicHeight) {
                   node.setAttributeNS(null, "preserveAspectRatio", "none");
