tenfourfox/layout/xul/crashtests/344228-1.xul
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

27 lines
511 B
XML

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="setTimeout(boom, 30);" class="reftest-wait">
<script>
function remove(q1) { q1.parentNode.removeChild(q1); }
function boom()
{
var x = document.getElementById("x");
var y = document.getElementById("y");
remove(x);
remove(y);
document.documentElement.removeAttribute("class");
}
</script>
<tree>
<treechildren id="y"/>
<richlistbox>
<hbox id="x"/>
<menulist/>
</richlistbox>
</tree>
</window>