1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/540760.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,18 @@ 1.4 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 1.5 + 1.6 +<script> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + var a = document.getElementById("a"); 1.11 + while (a.firstChild) 1.12 + a.removeChild(a.firstChild); 1.13 +} 1.14 + 1.15 +window.addEventListener("load", boom, false); 1.16 + 1.17 +</script> 1.18 + 1.19 +<menulist id="a" sizetopopup="pref"><menupopup/><menupopup/></menulist> 1.20 + 1.21 +</window>