Add crashtests for bug 429088

This commit is contained in:
Jesse Ruderman 2008-09-14 00:02:20 -07:00
parent 0bb771e3c9
commit 95efda0dc7
3 changed files with 46 additions and 0 deletions

View File

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){}, false);
var MATHML_NS = "http://www.w3.org/1998/Math/MathML";
var ms = document.createElementNS(MATHML_NS, "ms");
document.body.appendChild(ms);
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
window.addEventListener("DOMSubtreeModified", function(){}, false);
var span = document.createElement("span");
document.body.appendChild(span);
}
</script>
<style type="text/css">
span:before { content: '0'; }
span:after { content: '1'; }
</style>
</head>
<body onload="boom();"></body>
</html>

View File

@ -119,6 +119,8 @@ load 420213-1.html
load 420651-1.xhtml
load 423107-1.xhtml
load 428448-1.html
load 429088-1.html
load 429088-2.html
load 432752-1.svg
load 433450-1.html
load 444925-1.xul