Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
<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>