зеркало из https://github.com/mozilla/pjs.git
new regression test not affecting the build.
This commit is contained in:
Родитель
83b5a56248
Коммит
4c975adf73
|
@ -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"> 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
|
||||
|
|
Загрузка…
Ссылка в новой задаче