Closed
Bug 1154
Opened 26 years ago
Closed 26 years ago
body frame not handling constrained widths
Categories
(Core :: Layout, defect, P2)
Tracking
()
VERIFIED
FIXED
People
(Reporter: karnaze, Assigned: buster)
Details
nsFieldSetFrame has a body frame. When the nsFieldSetFrame is reflowed with a
constrained width, it passes this along to the body's Reflow. However, the body
frame is not honoring the minWidth. The example below illustrates this; the
images should have been reflowed below one another. I did not try constrained
heights.
<body>
<FORM>
<fieldset style="display: inline; width: 75px; height: 200px">
<legend>hello</legend>
<img src=raptor.jpg style="width:50px; height:50px;">
<img src=raptor.jpg style="width:50px; height:50px;">
</fieldset>
</form>
</body>
I added some code to nsFieldSetFrame to make it somewhat properly handle a
width style setting on it. Chris should finish the job.
Please use cvs diff to discover in detail what I did.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•26 years ago
|
||
Bug is fixed in 11/30 build.
You need to log in
before you can comment on or make changes to this bug.
Description
•