gecko-dev/dom/xul/crashtests/425821-1.xul

16 строки
449 B
Plaintext
Исходник Обычный вид История

2008-09-14 05:45:42 +04:00
<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>