mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-29 15:52:07 +00:00
Add crashtests
This commit is contained in:
parent
85b2259563
commit
bec2eeb177
36
layout/base/crashtests/331679-1.xhtml
Normal file
36
layout/base/crashtests/331679-1.xhtml
Normal 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>
|
19
layout/base/crashtests/331679-2.xml
Normal file
19
layout/base/crashtests/331679-2.xml
Normal 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>
|
19
layout/base/crashtests/331679-3.xml
Normal file
19
layout/base/crashtests/331679-3.xml
Normal 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>
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user