trisquel-icecat/icecat/layout/base/crashtests/325967-1.html
2025-10-06 02:35:48 -06:00

29 lines
611 B
HTML

<html class="reftest-wait">
<head>
<script>
function init()
{
var ww = document.getElementById("ww");
var inp = document.getElementById("inp");
document.addEventListener("DOMNodeInserted", u);
document.body.appendChild(ww);
function u()
{
document.removeEventListener("DOMNodeInserted", u);
ww.removeChild(inp);
document.documentElement.removeAttribute("class");
}
}
</script>
</head>
<body onload="SpecialPowers.pushPrefEnv({'set': [['dom.mutation_events.enabled', true]]}, init)"><div id="ww"><input type="text" value="inputtext" id="inp">moretext</div></body>
</html>