This commit is contained in:
karnaze%netscape.com 1999-08-04 19:34:46 +00:00
Родитель b27e7b2240
Коммит b7aef851ae
6 изменённых файлов: 129 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,9 @@
<table border>
<tr>
<td width="%">
<ul>
<li>blah blah blah blah blah blah blah
</ul>
</td>
</tr>
</table>

Просмотреть файл

@ -0,0 +1,29 @@
<html>
<body>
<table width=100% border=2>
<tr><td>
Y
<table cellspacing=0 cellpadding=0 width=224 border=0 align=right>
<tr>
<td rowspan=4 width=10><img src="raptor.jpg" width=10 height=1></td>
<td width=214><img src="raptor.jpg" width=214 height=163 border=0 alt="screen
shot"></td>
</tr>
<tr>
<td height=8><img src="raptor.jpg" width=1 height=8 alt=""></td>
</tr>
<tr>
<td><font size=-2 face="MS Sans Serif, Helvetica" color="#666600">CleanSweep
Deluxe tracks the files you use most often, then recommends rarely used ones for
you to delete.<br></font></td>
</tr>
<tr>
<td height=8><img src="raptor.jpg" width=1 height=8 alt=""></td>
</tr>
</table>
<p>X</td></tr></table>
</body>
</html>

Просмотреть файл

@ -0,0 +1,15 @@
<TABLE BORDER="1" WIDTH=100%>
<!-- As long as there is a width of the table, the problem exists, but the problem is not dependent upon a specific table width -->
<TR>
<TD COLSPAN="2" WIDTH=100%>A</TD>
</TR>
<!-- The problem appears to be that Mozilla renders the following cells as if there is no COLSPAN=2 tag above. Mozilla DOES render the top correctly but does not realize that the top TD covers 2 cells instead of 1. -->
<TR>
<TD></TD>
<TD>This text is invariably wrapped</TD>
</TR>
</TABLE>

Просмотреть файл

@ -0,0 +1,52 @@
<TABLE WIDTH="420" BORDER="1" CELLSPACING="1" CELLPADDING="1" BGCOLOR="#cccccc">
<!-- af2_results_elbat.htm - 11/17/98 - 11:12:13 AM -->
<TR valign="TOP">
<td width="20" align="RIGHT">
1.&nbsp;</TD>
<td width="232">
Some One<BR>
Joe Banker<br>
4633 Ocean Avenue<BR>
San Francisco,&nbsp;
CA&nbsp;
94132 <BR>
</TD>
<td width="20"><IMG
SRC="../images/raptor.jpg" WIDTH =20 HEIGHT=1 BORDER=0></TD>
<td width="148" align="RIGHT"><IMG
src="../images/raptor.jpg" border="0" alt="" width="38" height="34"><IMG
SRC="../images/raptor.jpg" WIDTH =12 HEIGHT=1 BORDER=0><IMG
src="../images/raptor.jpg" width="38" height="34" border="0" alt=""><IMG
SRC="../images/raptor.jpg" WIDTH =12 HEIGHT=1 BORDER=0><IMG
src="../images/raptor.jpg" width="38" height="34" border="0" alt=""></TD>
</TR>
<TR><td></td>
<TD colspan="3"><IMG
src="../images/raptor.jpg" width="398" height="1" border="0" alt=""><br>&nbsp;</TD>
</TR>
<!-- af2_results_elbat.htm - 11/17/98 - 11:12:13 AM -->
<TR valign="TOP">
<td width="20" align="RIGHT">
2.&nbsp;</TD>
<td width="232">
FORECLOSURES AAA HOMES UP TO 50% OFF<BR>
Real Estate Services<br>
CA&nbsp;
00000 <BR>
(000) 000-0000
</TD>
<td width="20"><IMG
SRC="../images/raptor.jpg" WIDTH =20 HEIGHT=1 BORDER=0></TD>
<td width="148" align="RIGHT"><IMG
src="../images/raptor.jpg" border="0" alt="" width="38" height="34"><IMG
SRC="../images/raptor.jpg" WIDTH =12 HEIGHT=1 BORDER=0><IMG
src="../images/raptor.jpg" width="38" height="34" border="0" alt=""><IMG
SRC="../images/raptor.jpg" WIDTH =12 HEIGHT=1 BORDER=0><IMG
src="../images/raptor.jpg" width="38" height="34" border="0" alt=""></TD>
</TR>
</TABLE>

Просмотреть файл

@ -44,14 +44,18 @@ file://s:/mozilla/layout/html/tests/table/bugs/bug3037-1.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3037-2.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3103.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3105.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3191.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3260.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3263.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3309-1.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3309-2.html
file://s:/mozilla/layout/html/tests/table/bugs/bug3718.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4093.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4284.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4294.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4382.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4385.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4427.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4429.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4520.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4523.html

Просмотреть файл

@ -0,0 +1,20 @@
<html>
<head>
<style>
tr[name="foo"] {
background-color: red;
font-size: 200%;
}
</style>
</head>
<body>
<button onclick="document.getElementById('row1').setAttribute('name', 'foo')">
Click me!
</button>
<table border>
<tr id="row1">This<td>will<td>show<td>a<td>reflow<td>bug</tr>
<tr><td>This<td>is<td>a<td>normal<td>row</tr>
</table>
</body>
</html>