Add crashtest

This commit is contained in:
jruderman@hmc.edu 2007-12-19 11:13:24 -08:00
parent 0255ed65ff
commit 7a33c4e13d
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,42 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script>
function init()
{
var A = document.getElementById("z");
var B = A.nextSibling;
var C = B.nextSibling;
var P = A.parentNode;
document.addEventListener("DOMNodeRemoved", fizzy, false);
P.removeChild(B);
document.removeEventListener("DOMNodeRemoved", fizzy, false);
function fizzy()
{
document.removeEventListener("DOMNodeRemoved", fizzy, false); // avoid recursion
P.removeChild(A);
}
document.documentElement.appendChild(C);
}
window.addEventListener("load", init, false);
</script>
</head>
<body>
<hbox xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<menupopup y="x"> <menuitem id="z"/> <menuitem/> <menuitem/> </menupopup>
</hbox>
</body>
</html>

View File

@ -1,6 +1,7 @@
load 326864-1.xul load 326864-1.xul
load 326875-1.xul load 326875-1.xul
load 326881-1.xul load 326881-1.xul
load 329982-1.xhtml
load 336096-1.xhtml load 336096-1.xhtml
load 360078-1.xhtml load 360078-1.xhtml
load 363791-1.xul load 363791-1.xul