new regression test not affecting the build.

This commit is contained in:
karnaze%netscape.com 2001-03-26 06:23:01 +00:00
Родитель 83b5a56248
Коммит 4c975adf73
2 изменённых файлов: 37 добавлений и 0 удалений

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

@ -0,0 +1,36 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>This is a title</title>
<script type="text/javascript">
function test1() {
var e1 = document.getElementById("myTd");
e1.style.width = 300;
var e2 = document.getElementById("table");
}
function test2() {
var e1 = document.getElementById("myTd");
e1.style.width = 300;
var e2 = document.getElementById("table");
e2.style.display = 'none';
e2.style.display = '';
}
</script>
</head>
<body onload=test1()>
<table id="table" cellspacing=0 border=3>
<tr>
<td>fieldLabel</td>
<td id="myTd">&nbsp;&nbsp;&nbsp;InspectionText</td>
</tr>
</table>
<form action="">
<input type="button" value="change width" onclick="test1()">
<input type="button" value="change width with table reflow"
onclick="test2()">
</form>
</body>
</html>

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

@ -1,3 +1,4 @@
file:///s|/mozilla/layout/html/tests/table/bugs/bug60749.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug60807.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug61042-1.html
file:///s|/mozilla/layout/html/tests/table/bugs/bug61042-2.html