new regression tests, not affecting the build.

This commit is contained in:
karnaze%netscape.com 2001-11-20 01:27:31 +00:00
parent cd1e7e0ae3
commit 1c4ca8b999
3 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,11 @@
<HTML>
<HEAD></HEAD>
<BODY><table border=1 cellspacing=0 style="height: 100%">
<tr style="height: 70%">
<td>height: 70%</td>
</tr>
<tr style="height: 30%">
<td>height: 30%</td>
</tr>
</table></BODY>
</HTML>

View File

@ -22,6 +22,7 @@ file:///s|/mozilla/layout/html/tests/table/bugs/bug1067-2.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug108340.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug109043.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug11026.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug110566.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug1128.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug11321.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug11331.html

View File

@ -0,0 +1,37 @@
<html>
<head>
<title></title>
<script type="text/javascript">
function toggle(what) {
var adv = document.getElementById("it_guru");
var ns = 'none';
if (what.checked) {
ns= "table-row";
}
adv.style.display = ns;
}
</script></head><body >
<form action="http://localhost/">
Click me twice <input type="checkbox" onclick="toggle(this)">
<table>
<tbody>
<tr>
<td>Without the &lt;tbody&gt; tags Mozilla doesn't crash
</td>
</tr>
</tbody>
<tr id="it_guru">
<td>I disappear
</td>
</tr>
<tr>
<td>Without this row Mozilla doesn't crash
</td>
</tr>
</table>
</form>
</body>
</html>