Посмотрите на следующий пост группы Google. Есть обходной путь, который может помочь вам:
http://code.google.com/p/svgweb/issues/detail?id=625
Обходной путь (из ссылки выше):
window.onload = function() {
function onCreateElementNsReady(func) {
if (document.createElementNS != undefined) {
func();
} else {
setTimeout(function() { onCreateElementNsReady(func); }, 100);
}
}
onCreateElementNsReady(function() {
var svg = document.createElementNS(svgns, 'svg');
// ...
});
};