Please remain seated until the crashtest has come to a complete stop.

This commit is contained in:
jruderman@hmc.edu 2007-12-19 15:56:15 -08:00
Родитель b62dc27279
Коммит 9cea58230b
2 изменённых файлов: 20 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,19 @@
<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>

Просмотреть файл

@ -12,3 +12,4 @@ load 382746-1.xul
load 382899-1.xul
load 383236-1.xul
load 384491-1.xhtml
load 394120-1.xhtml