gecko/layout/base/crashtests/325967-1.html
jruderman@hmc.edu 2a8a486314 Add crashtest
2008-01-04 20:26:48 -08:00

31 lines
556 B
HTML

<html class="reftest-wait">
<head>
<script>
function init()
{
var ww = document.getElementById("ww");
var inp = document.getElementById("inp");
document.addEventListener("DOMNodeInserted", u, false);
document.body.appendChild(ww);
function u()
{
document.removeEventListener("DOMNodeInserted", u, false);
ww.removeChild(inp);
document.documentElement.removeAttribute("class");
}
}
setTimeout(init, 30);
</script>
</head>
<body><div id="ww"><input type="text" value="inputtext" id="inp">moretext</div></body>
</html>