Letractively / svgweb

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

Unable to display multiple SVG images on the same page. #313

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Add two SVG images on the page using Object tags using markup such as:

<div>
<div><object src="SVG/a1.SVG" classid="image/svg+xml" width="100px" 
height="100px" /></div>
<div><object src="SVG/a2.SVG" classid="image/svg+xml" width="100px" 
height="100px" /></div>
</div>

2. Preview the Page in Internet Explorer.
3. Notice that only SVG referenced in the first object tag is displayed. 
The second SVG is not displayed at all.

What is the expected output? What do you see instead?

Expected output is to display both SVG images on the page.

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

OS = Vista / Windows 7
Browser = Internet Explorer 8
Flash = Version 9/10

Please provide any additional information below. Reduced test cases are
always appreciated!

Original issue reported on code.google.com by kingofal...@gmail.com on 18 Sep 2009 at 5:11

GoogleCodeExporter commented 8 years ago
Your OBJECT markup is incorrect; it has to be tailored a bit to help SVG Web. 
Please
make sure to see the Quick Start guide for details including other important
documentation:

http://codinginparadise.org/projects/svgweb/docs/QuickStart.html

Original comment by bradneub...@gmail.com on 18 Sep 2009 at 7:12

GoogleCodeExporter commented 8 years ago
Agreed. I've confirmed that the unsupported object syntax (no end tag) results 
in one
image on IE and that using the documented syntax makes the problem go away.

Original comment by grick23@gmail.com on 18 Sep 2009 at 7:22