1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/layout/xul/crashtests/326879-1.xul Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,31 @@ 1.4 +<?xml version="1.0"?> 1.5 +<?xml-stylesheet href="chrome://global/skin/" type="text/css"?> 1.6 + 1.7 +<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"> 1.8 + 1.9 + 1.10 + 1.11 +<script> 1.12 + 1.13 + 1.14 +function init() { 1.15 + 1.16 + var menupopup = document.getElementsByTagName("menupopup")[0]; 1.17 + menupopup.ordinal = null; 1.18 +}; 1.19 + 1.20 + 1.21 +window.addEventListener("load", init, false); 1.22 + 1.23 +</script> 1.24 + 1.25 + 1.26 +<menulist> 1.27 + <menupopup> 1.28 + <menuitem label="Foo"/> 1.29 + </menupopup> 1.30 +</menulist> 1.31 + 1.32 + 1.33 + 1.34 +</window>