mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
105 lines
2.0 KiB
HTML
105 lines
2.0 KiB
HTML
<HTML>
|
|
<BODY>
|
|
|
|
<p>This first table is the simple test case. Colspan confuses the width
|
|
allocation when there is an image in the colspanned row. </p>
|
|
|
|
<TABLE BORDER WIDTH="620">
|
|
<TR>
|
|
<TD WIDTH=420>
|
|
foo
|
|
</td>
|
|
<td WIDTH=200>
|
|
bar
|
|
</td>
|
|
</tr>
|
|
<TR>
|
|
<TD COLSPAN=2>
|
|
<img src="../images/rle.cgi?1865?111335577"
|
|
alt="Russian LinkExchange Banner Network" border="0" height="60"
|
|
width="468">
|
|
</TD>
|
|
</TR>
|
|
|
|
</table>
|
|
|
|
<p>This second table is the same as the first, minus the second
|
|
'colspan=2' row. Widths are now correct.</p>
|
|
|
|
<TABLE BORDER WIDTH="620">
|
|
<TR>
|
|
<TD WIDTH=420>
|
|
foo
|
|
</td>
|
|
<td WIDTH=200>
|
|
bar
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<p>An observation: Note that as the image-width approaches
|
|
the table-width, the two columns approach equal width (error increases).
|
|
Conversely, below some threshold image-width (which is about 390px or 30px less than the TD WIDTH=420), the error is (apparently) zero.
|
|
</p>
|
|
|
|
<p>Here the <img width=600></p>
|
|
|
|
<TABLE BORDER WIDTH="620">
|
|
<TR>
|
|
<TD WIDTH=420>
|
|
foo
|
|
</td>
|
|
<td WIDTH=200>
|
|
bar
|
|
</td>
|
|
</tr>
|
|
<TR>
|
|
<TD COLSPAN=2>
|
|
<img src="../images/rle.cgi?1865?111335577"
|
|
alt="Russian LinkExchange Banner Network" border="0" height="60"
|
|
width="600">
|
|
</TD>
|
|
</TR>
|
|
|
|
</table>
|
|
|
|
<p>Here the <img width=400> (error is almost zero).</p>
|
|
|
|
<TABLE BORDER WIDTH="620" bgcolor="#dddddd">
|
|
<TR>
|
|
<TD WIDTH=420>
|
|
foo (single row table)
|
|
</td>
|
|
<td WIDTH=200>
|
|
bar (single row table)
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
<TABLE BORDER WIDTH="620">
|
|
<TR>
|
|
<TD WIDTH=420>
|
|
foo
|
|
</td>
|
|
<td WIDTH=200>
|
|
bar
|
|
</td>
|
|
</tr>
|
|
<TR>
|
|
<TD COLSPAN=2>
|
|
<img src="../images/rle.cgi?1865?111335577"
|
|
alt="Russian LinkExchange Banner Network" border="0" height="60"
|
|
width="400">
|
|
</TD>
|
|
</TR>
|
|
|
|
</table>
|
|
|
|
<p>I tested the above with M4 and May01 build for win95. (The above
|
|
examples assume that images load normally -- N.B. for May01 the images
|
|
initially load, and the width error is visually apparent, but then the
|
|
images get replaced by their ALT text, and the width error is no
|
|
longer present -- this is, of course, a different issue/bug.)
|
|
|
|
</BODY></HTML>
|
|
|