mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-04 14:58:37 +09:00
17 lines
412 B
HTML
17 lines
412 B
HTML
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||
|
|
<head>
|
||
|
|
<script>
|
||
|
|
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
||
|
|
|
||
|
|
function boom()
|
||
|
|
{
|
||
|
|
var listbox = document.createElementNS(XUL_NS, 'listbox');
|
||
|
|
document.body.appendChild(listbox);
|
||
|
|
var listitem = document.createElementNS(XUL_NS, 'listitem');
|
||
|
|
listbox.appendChild(listitem);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body onload="boom();">
|
||
|
|
</body>
|
||
|
|
</html>
|