Add crashtests

This commit is contained in:
jruderman@hmc.edu 2007-12-16 18:58:35 -08:00
parent 85b2259563
commit bec2eeb177
4 changed files with 77 additions and 0 deletions

View File

@ -0,0 +1,36 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Bug 331679 testcase</title>
<style id="style">
.cat::-moz-table-row-group { overflow: scroll; }
.toad { position: absolute; }
</style>
<script>
function init()
{
document.getElementById("style").textContent += "table::-moz-table-row { opacity: 0.2; }";
document.getElementById("row").setAttribute("class", "toad");
document.getElementById("table").setAttribute("class", "cat");
}
window.addEventListener("load", init, false);
</script>
</head>
<body>
<table id="table">
<tr id="row">
<td>Cell</td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,19 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>pseudo double SetInitialChildlist</title>
<style>
.cat::-moz-table-row-group { overflow: scroll;}
tr { position: absolute;}
</style>
</head>
<body>
<table class="cat">
<tr>
<td>Cell</td>
</tr>
</table>
</body>
</html>

View File

@ -0,0 +1,19 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>pseudo double SetInitialChildlist</title>
<style>
.cat::-moz-table-row-group { overflow: scroll;}
tr { position: absolute;}
</style>
</head>
<body>
<div class="cat" style="display:table">
<div style="display:block">
<div style="display:table-cell">Cell</div>
</div>
</div>
</body>
</html>

View File

@ -11,6 +11,9 @@ load 322436-1.html
load 325984-1.xhtml
load 325984-2.html
load 331204-1.html
load 331679-1.xhtml
load 331679-2.xml
load 331679-3.xml
load 335140-1.html
load 337419-1.html
load 339651-1.html