sacuba / explorercanvas

Automatically exported from code.google.com/p/explorercanvas
0 stars 0 forks source link

Doesn't work in IE 6 anymore #66

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Explorer Canvas doesn't work in IE6 anymore because of the addNamespace
function, which should simply be :

  function addNamespace(doc, prefix, urn) {
    if (!doc.namespaces[prefix]) {
      doc.namespaces.add(prefix, urn, '#default#VML');
    }
  }

The third argument is in fact required in all the browsers.

Original issue reported on code.google.com by phenxdesign on 18 Jan 2010 at 8:35

GoogleCodeExporter commented 9 years ago
I can confirm this, though it's worth noting that I'm running IE6 through the 
Internet Explorer Collection.

Original comment by JerseyChewi@gmail.com on 2 Feb 2010 at 1:44

GoogleCodeExporter commented 9 years ago
I can confirm this on Windows XP + plain vanilla IE6.

The patch suggested by the original post works.

Original comment by maciekad...@gmail.com on 19 Feb 2010 at 2:53

GoogleCodeExporter commented 9 years ago

Original comment by erik.arv...@gmail.com on 20 Mar 2010 at 10:51

GoogleCodeExporter commented 9 years ago
Can someone with a real IE6 verify?

Original comment by erik.arv...@gmail.com on 20 Mar 2010 at 10:55