зеркало из https://github.com/mozilla/gecko-dev.git
20 строки
491 B
HTML
20 строки
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>
|