mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 18:07:31 +09:00
20 lines
529 B
Text
20 lines
529 B
Text
|
|
<xul xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" onload="boom();">
|
||
|
|
|
||
|
|
<script>
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||
|
|
|
||
|
|
var newListbox = document.createElementNS(XUL_NS, "listbox");
|
||
|
|
document.getElementById("listbox").appendChild(newListbox);
|
||
|
|
|
||
|
|
var newHbox = document.createElementNS(XUL_NS, "hbox");
|
||
|
|
document.getElementById("listitem").appendChild(newHbox);
|
||
|
|
}
|
||
|
|
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<listbox id="listbox"><listitem id="listitem" /></listbox>
|
||
|
|
|
||
|
|
</xul>
|