mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-22 11:33:03 +00:00
20 lines
491 B
HTML
20 lines
491 B
HTML
<html xmlns="http://www.w3.org/1999/xhtml"
|
|
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
|
|
<head>
|
|
<script>
|
|
function boom()
|
|
{
|
|
var XUL_NS = "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
|
|
var xultext = document.createElementNS(XUL_NS, "text");
|
|
var hbox = document.getElementById("hbox")
|
|
hbox.appendChild(xultext);
|
|
}
|
|
</script>
|
|
</head>
|
|
<body onload="boom();">
|
|
|
|
<xul:listboxbody><xul:hbox id="hbox" /></xul:listboxbody>
|
|
|
|
</body>
|
|
</html>
|