Link to home
Start Free TrialLog in
Avatar of xpsi
xpsi

asked on

Draw error in Firefox 2 with iframe in an overflow:hidden div

I'm experiencing a draw error in Firefox 2 with an IFRAME that gets moved into hidden overflow territory in a DIV element.

I have an example of the issue on this page:

http://www.mdxdata.com/rdemo/slider.html 

First wait for the IFRAME to load and then click the 'Slide' buttons to see what I mean. If you scroll up and down or minimize and restore the browser window, the artifacts go away which leads me to believe it's an error in the rendering engine of Firefox.

Without hiding the IFRAME (i.e., display:none or visibility:hidden), is there anyway to fix this?

Thanks!
Avatar of bluefezteam
bluefezteam

The artifact is a swf movie, swfs can be awkward to work with due to their object model.

Apart from that your solution looks fine.

If it were possible you could try setting the flash movies proeprties as transparent, that sometimes helps. But again the only reason I see an artifact is the flash movie.
Avatar of xpsi

ASKER

@bluefezteam: I have a test case where the IFRAME does not contain a Flash movie and the same thing happens.

I've edited it to load google.com instead of aol.com. You'll still see the issue.

Thank you.
definately the fact theres a flash movie on there; you are linking to AOL and it has a flash banner - as long as you dont use/link to flash movies I cant see any errors in your code.
Avatar of xpsi

ASKER

Hmm, try clearing your cache. I edited the code to load a page on Google that definitely has no flash objects within. Still happens!
I know it sounds stupid, but what happens if you float 2 white blocks eitherside of that gap, does the 'effect' still show through?
set overflow:auto;

I just used firebug and set your page to auto - it seemed to fix it
ASKER CERTIFIED SOLUTION
Avatar of bluefezteam
bluefezteam

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Obviously I got a scroll bar across the bottom but it shows that it's related to that tag - we just need to find a way to hide that scroll bar in someway?

Maybe this needs to be a conditional fix - only if it's in firefox it switches the tag to auto?
Avatar of xpsi

ASKER

Very interesting observation!

I'm going to try this:

If I detect FF2 I'll set overflow to auto just for the animation part, and then set it back to hidden once it's done
sounds a plan - you could also hover a white div over the scrollbar area? a bit over the top, but would hide it...

What a team!