Use this crashtest only with proper ventilation.

This commit is contained in:
jruderman@hmc.edu 2007-12-19 16:01:30 -08:00
parent 3bcc16bbb5
commit ddab81975c
2 changed files with 18 additions and 0 deletions

View File

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

View File

@ -14,3 +14,4 @@ load 383236-1.xul
load 384491-1.xhtml
load 394120-1.xhtml
load 397304-1.html
load 398326-1.xhtml