Add crashtest

This commit is contained in:
jruderman@hmc.edu 2007-12-18 16:17:04 -08:00
parent 5e38d09cf2
commit d13daacc32
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,30 @@
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<script>
function init()
{
var tt = document.getElementById("textbox");
var hb = document.getAnonymousNodes(tt)[0]; // hbox
var men = document.getAnonymousNodes(hb)[1]; // menupopup
var menitem = men.childNodes[0]; // menuitem
var hb2 = document.getAnonymousNodes(menitem)[1]; // hbox
var label2 = hb2.childNodes[0]; // label
men.menu = null;
label2.click();
}
window.addEventListener("load", init, false);
</script>
<textbox id="textbox"/>
</window>

View File

@ -1,2 +1,3 @@
load 326864-1.xul
load 336096-1.xhtml
load 360078-1.xhtml