Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Won't Fix
-
2.5.0-beta2
Description
The new algorithm to calculate dynamic height does not consider elements with position fixed and absolute that are not part of the static flows which could cause forever increase in height.
Example gadget:
<Module>
<ModulePrefs title="Dynamic Height Size example with fixed position element test gadget">
<Require feature="dynamic-height" />
<Require feature="dynamic-width" />
</ModulePrefs>
<Content type="html" view="default"><![CDATA[
<head>
<style type="text/css">
body
#wrap
{ height:100% },
#main
,
#footer
</style>
<script type="text/javascript">
gadgets.util.registerOnLoadHandler(function()
);
</script>
</head>
<body id="mainbody">
<div id="wrap">
<div id="main">
Main canvas content.
</div>
<div id="footer">
Footer element.
</div>
</div>
</body>
]]></Content>
</Module>