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

16 lines
449 B
XML

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();">
<script type="text/javascript">
function boom()
{
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
var wiz = document.createElementNS(XUL_NS, "wizard");
var btn = document.createElementNS(XUL_NS, "hbox");
btn.setAttribute("anonid", "Buttons");
wiz.appendChild(btn);
wiz.cloneNode(true);
}
</script>
</window>