Hi, I have a sample of a dynamic height gadget which consists of: - an outer div with fixed height and overflow auto - and an inner div with fixed height
here is the gadget: http://www.google.it/ig/directory?hl=it&url=hosting.gmodules.com/ig/gadgets/file/103300560954474807106/wrong-height-onChrome.xml and here is the code: <?xml version="1.0" encoding="UTF-8"?> <Module> <ModulePrefs title="Test Me on chrome" > <Require feature="dynamic-height"/> </ModulePrefs> <Content type="html"><![CDATA[ <div style="background-color:silver;height:150px;overflow:auto;"> <div style="background-color:yellow;height:700px;"> Hello, world! </div> </div> <script type="text/javascript" language="javascript"> gadgets.util.registerOnLoadHandler(function() { gadgets.window.adjustHeight(); }); </script> ]]></Content> </Module> On Firefox and IE the gadget looks good, but on Chrome it's rendered with a wrong height. I wonder if I'm doing something wrong or if this could be a Gadget api bug, or even something related to Chrome. Thank you for any help -- You received this message because you are subscribed to the Google Groups "iGoogle Developer Forum" 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-Gadgets-API?hl=en.
