This commit is contained in:
karnaze%netscape.com 1999-05-10 19:21:43 +00:00
Родитель 81741d5e44
Коммит 285599d579
4 изменённых файлов: 147 добавлений и 0 удалений

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

@ -0,0 +1,21 @@
<TABLE BORDER=1 CELLPADDING=1 CELLSPACING=0>
<TR>
<TD COLSPAN=2>
The Supreme Court says
Wisconsin can continue using tuition vouchers to help poor parents send their
children to church-run schools. What's your stand?</TD></TR>
<TR>
<TD>hello</TD>
<TD align=left >hello</TD></TR>
</TABLE>
<BR>
<TABLE BORDER=1 CELLPADDING=1 CELLSPACING=0 width=600>
<TR>
<TD>hello</TD>
<TD>
The Supreme Court says
Wisconsin can continue using tuition vouchers to help poor parents send their
children to church-run schools. What's your stand?</TD>
<TR>
</TABLE>
<BR>

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

@ -45,6 +45,7 @@ file://s:/mozilla/layout/html/tests/table/bugs/bug4382.html
file://s:/mozilla/layout/html/tests/table/bugs/bug4429.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/bug4520.html
file://s:/mozilla/layout/html/tests/table/bugs/bug5838.html file://s:/mozilla/layout/html/tests/table/bugs/bug5838.html
file://s:/mozilla/layout/html/tests/table/bugs/bug6184.html
file://s:/mozilla/layout/html/tests/table/bugs/bug641-1.html file://s:/mozilla/layout/html/tests/table/bugs/bug641-1.html
file://s:/mozilla/layout/html/tests/table/bugs/bug641-2.html file://s:/mozilla/layout/html/tests/table/bugs/bug641-2.html
file://s:/mozilla/layout/html/tests/table/bugs/bug647.html file://s:/mozilla/layout/html/tests/table/bugs/bug647.html

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

@ -0,0 +1,124 @@
<html><body>
fixed width table with 100px width image in 1st cell
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px width table in 1st cell
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<table width=100>
<tr>
<td>foo</td></tr></table></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px width image in 1st cell
<table bgcolor=orange border=1>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px width 1st cell containing image
<table width=500 bgcolor=orange border=1>
<tr>
<td width=100>
<img src=raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px width 1st cell containing image
<table bgcolor=orange border=1>
<tr>
<td width=100>
<img src=raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
small fixed width table with 100px image in 1st cell
<table width=150 bgcolor=orange border=1>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
fixed width table with 100px image in 1st cell, 100px 2nd cell containing text
<table width=500 bgcolor=orange border=1>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td width=100>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
auto width table with 100px image in 1st cell, 100px 2nd cell containing text.
This differs from Nav4.5 but is similar to IE5
<table bgcolor=orange border=1>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td width=100>a bunch of text, a bunch of text, a bunch of text, a bunch of text
a bunch of text, a bunch of text, a bunch of text, a bunch of text</td></tr>
</table>
<BR>
Fixed width table with colspan=2 in 1st row, 2nd row containing 100px image, text
<table width=500 bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Auto width table with colspan=2 in 1st row, 2nd row containing 100px image, text
<table bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Fixed width table with colspan=2 in 1st row, 2nd row containing 100px image, 100px cell
<table width=500 bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td width=100>there there there there there there there there there there there there</td></tr>
</table>
<BR>
Auto width table with colspan=2 in 1st row, 2nd row containing 100px image, 100px cell
<table bgcolor=orange border=1>
<tr>
<td colspan=2>
hello hello hello hello hello hello hello hello hello hello hello</td></tr>
<tr>
<td>
<img src=raptor.jpg width=100 height=100></td>
<td width=100>there there there there there there there there there there there there</td></tr>
</table>
<BR>
</body></html>

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

@ -1,3 +1,4 @@
file://s:/mozilla/layout/html/tests/table/other/cell_widths.html
file://s:/mozilla/layout/html/tests/table/other/empty_cells.html file://s:/mozilla/layout/html/tests/table/other/empty_cells.html
file://s:/mozilla/layout/html/tests/table/other/nestedTables.html file://s:/mozilla/layout/html/tests/table/other/nestedTables.html
file://s:/mozilla/layout/html/tests/table/other/slashlogo.html file://s:/mozilla/layout/html/tests/table/other/slashlogo.html