new regression test cases
git-svn-id: svn://10.0.0.236/trunk@30936 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
21
mozilla/layout/html/tests/table/bugs/bug6184.html
Normal file
21
mozilla/layout/html/tests/table/bugs/bug6184.html
Normal file
@@ -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/bug4520.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-2.html
|
||||
file://s:/mozilla/layout/html/tests/table/bugs/bug647.html
|
||||
|
||||
124
mozilla/layout/html/tests/table/other/cell_widths.html
Normal file
124
mozilla/layout/html/tests/table/other/cell_widths.html
Normal file
@@ -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/nestedTables.html
|
||||
file://s:/mozilla/layout/html/tests/table/other/slashlogo.html
|
||||
|
||||
Reference in New Issue
Block a user