1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/base/crashtests/336999-1.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,26 @@ 1.4 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" class="reftest-wait"> 1.5 + 1.6 +<script> 1.7 + 1.8 +function boom() 1.9 +{ 1.10 + document.getElementById("xxx").style.position = "fixed"; 1.11 + document.documentElement.removeAttribute("class"); 1.12 +} 1.13 + 1.14 +window.addEventListener("load", function(){setTimeout(boom, 30)}, 0); 1.15 + 1.16 +</script> 1.17 + 1.18 + 1.19 + <hbox id="xxx" style="position: absolute;"> 1.20 + <label value="X" /> 1.21 + <menulist> 1.22 + <menupopup> 1.23 + <menuitem label="Y" /> 1.24 + </menupopup> 1.25 + </menulist> 1.26 + </hbox> 1.27 + 1.28 + 1.29 +</window>