mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-12 23:12:21 +00:00
new regression tests, not affecting the build.
This commit is contained in:
parent
cd1e7e0ae3
commit
1c4ca8b999
11
layout/html/tests/table/bugs/bug110566.html
Normal file
11
layout/html/tests/table/bugs/bug110566.html
Normal 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>
|
@ -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
|
||||
|
37
layout/html/tests/table/interactive/bug110523.html
Normal file
37
layout/html/tests/table/interactive/bug110523.html
Normal 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 <tbody> 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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user