Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/base/crashtests/crashtests.list
class="reftest-wait">
<head>
<script>
function boom()
{
var y = document.getElementById("y");
y.parentNode.removeChild(y);
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 30);">
<div style="float: left">X<xul:hbox><input type="radio"/></xul:hbox></div>
<div id="y" style="float: left">Y</div>
</body>
</html>