mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-25 09:57:32 +09:00
20 lines
529 B
XML
20 lines
529 B
XML
<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>
|