blob: 9764e64aad18d0916058dd362f86c84ccefc58d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<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>
|