I have to develop for Firefox using the Adobe SVG Plugin 6. When using Firefox's native SVG viewing capabilities, I can simply look at document.documentElement
, which will give me the root svg
element and from there I can navigate the DOM to where I want.
With the ASV in Firefox, it appears to make a skeleton HTML file with an embed
in it, and I can't get past that. There don't seem to be any properties or methods from the embed
that lead to the SVG document.
Supposedly there is a window.svgDocument
property created by the plugin, but I can't get that to work (maybe it's IE only).
Is this possible in any way?