--- In [email protected], "Martin Honnen" <[EMAIL PROTECTED]> wrote: > > --- In [email protected], "pix.cube" <[EMAIL PROTECTED]> wrote: > > > I have a small SVG implementation at > http://www.pix-cube.com/cubeview.php . > > > The problem is that in Firefox and Opera native support the SVG file > is displayed in an automatically generated iframe. > > I have had a look at the source of the HTML document that you deliver > to Firefox 1.5, it shows an object element > > <object data="gencube.php" type="image/svg+xml" > style="width:100%;height:600px"> > <p>Your browser does not seem to support SVG!</p> > > </object> > > so why do you think or claim there is some generated (by whom?) iframe? > > > > Can anybody suggest a way around this problem for me? > > Have you tried > target="_parent" > ? >
This is a well-known problem in the SVG community, when clicking a svg:a link, it will only open within the object frame, it won't take over the whole screen, even if you specify target="_top" or "_parent". You will have to use some script to fix this (onclick attribute) until Firefox fixes Bug 300868, https://bugzilla.mozilla.org/show_bug.cgi?id=300868 (Jonathan Watt has recently submitted a patch, looks like it might make it into Firefox 2.0). I'm not sure about Opera because they don't share their bug info. ----- To unsubscribe send a message to: [EMAIL PROTECTED] -or- visit http://groups.yahoo.com/group/svg-developers and click "edit my membership" ---- Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/svg-developers/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

