mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!--
|
|
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 <br> make <br> me <br> tall <br>
|
|
make <br> me <br> tall <br> enough <br> make <br> me <br> tall <br>
|
|
make <br> me <br> tall <br> enough <br> make <br> me <br> tall <br>
|
|
make <br> me <br> tall <br> enough <br> make <br> me <br> tall <br>
|
|
make <br> me <br> tall <br> enough <br> make <br> me <br> tall <br>
|
|
make <br> me <br> tall <br> enough <br> make <br> me <br> tall <br>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</body></html>
|