Adding test for bug 457537

This commit is contained in:
Boris Zbarsky 2009-01-29 20:33:55 -05:00
parent 54418bdd3e
commit e74ce779cc
3 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
window.addEventListener("DOMAttrModified", function(){}, false);
document.body.appendChild(document.createElement("input"));
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function boom()
{
window.addEventListener("DOMAttrModified", function(){}, false);
document.body.appendChild(document.createElement("isindex"));
}
</script>
</head>
<body onload="boom();"></body>
</html>

View File

@ -23,3 +23,5 @@ load 393656-2.xhtml
load 404118-1.html
load 404123-1.html
load 455451-1.html
load 457537-1.html
load 457537-2.html