On 19 nov, 12:08, Schimki86 <[EMAIL PROTECTED]> wrote: > Hey Walden (ond others ;) ) > > I reproduced the issue. I copied the HTML out of my application into a fresh > blank HTML. Everything worked fine. Then I changed the DocType from *<!DOCTYPE > HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">* to *<!DOCTYPE HTML > PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" > "http://www.w3.org/TR/html4/loose.dtd">* (as in the GWT application) and it > worked very well (Issue disappears). > > But we can't change our DocType, because the Layout without > *"http://www.w3.org/TR/html4/loose.dtd" *seems very bad and actual this is a > common used DocType. That would involve very very much CSS-changes.
You're using Almost Standards Mode; and you're saying that switching to Quirks Mode solves the problem (but of course impact rendering). Have you tried using Standards Mode instead? (try with <!DOCTYPE html>, the simplest thing that triggers Standards Mode on all browsers --actually, all but Natscape 6 and very very old Mozilla, prior to Firefox 1.0). See http://hsivonen.iki.fi/doctype/ for more info. Anyway, it's a bug in FF3's Almost Standards Mode that you should file in their bugzilla (if not already done). --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/Google-Web-Toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
