Closed
Bug 5375
Opened 26 years ago
Closed 26 years ago
No vertical scrollbar if 'floated table' and marginheight=0
Categories
(Core :: Layout, defect, P3)
Tracking
()
VERIFIED
FIXED
People
(Reporter: 3jrgm, Assigned: buster)
Details
Attachments
(1 file)
(deleted),
text/html
|
Details |
This may be HTMLTables, but it has similarities to bug #2394 (bloomberg.com).
This example page should generate a vertical scrollbar. It does not.
The three relevant "parameters" are:
1) the 'marginheight=0' (must be zero)
2) must be *only* a floated table in the page (recalls bug #2394)
3) table is floated 'align=left|right'.
Tested on win95 for M4 build and for Apr 21 nightly build (opt).
-----------------------------------------------------------
<html><head></head>
<body marginheight="0">
<!-- note 1: marginheight must be zero -->
<!-- FOOBAR --> <!-- note 2: add FOOBAR and scrollbar appears -->
<!-- note 3: table must be align=left|right -->
<table border width="450" align="left">
<tr>
<td>
make <br> me <br> tall <br> enough ... [shortened from testcase]
</td>
</tr>
</table>
</body></html>
Reporter | ||
Comment 1•26 years ago
|
||
Reporter | ||
Comment 2•26 years ago
|
||
Two followup points:
1) this is a reduced case for a page that was reported in bug #5286,
which is possibly parser, possibly INVALID. However, when I worked
around the invalid HTML for the page, I saw this scrollbar problem.
http://www.sit.wisc.edu/~ssa/preview/preview2/main.html
2) If 'marginheight>0' the scroll bar appears, but the effective (visible)
marginheight is still zero.
Fix landed today. The block code was over zealous in avoiding some work which
triggered this bug.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•26 years ago
|
||
Fixed in the June 2nd Build.
URL: test case attached
You need to log in
before you can comment on or make changes to this bug.
Description
•