mustang2247 / svgweb

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

Image created by script is not shown on IE (Flash renderer) #442

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. create an image by script on IE, flash renderer

What is the expected output? What do you see instead?
The image should show but it didn't

What version of the product are you using? On what operating system,
browser, and version of Flash?
r984, IE7, Flash 10

See attached test case for details.

Original issue reported on code.google.com by young4ch...@gmail.com on 22 Dec 2009 at 8:15

Attachments:

GoogleCodeExporter commented 8 years ago
I'm not sure if this only my special problem on IE or a more general one, 
anyway, I
found a workaround. Share with you.

Original comment by young4ch...@gmail.com on 11 Feb 2010 at 7:55

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by bradneub...@gmail.com on 11 Feb 2010 at 3:58

GoogleCodeExporter commented 8 years ago
Marking as invalid because the setAttributeNS call is incorrect. See Brad's 
comment
in Issue 355.

Replace this:
img.setAttributeNS(xlinkns, "href", "images/colorprof.png");
with this:
img.setAttributeNS(xlinkns, "xlink:href", "images/colorprof.png");

Then, it works on IE.

Original comment by grick23@gmail.com on 28 Mar 2010 at 6:31