summaryrefslogtreecommitdiffstats
path: root/dom/xul/crashtests/384877-1-inner.xhtml
blob: bd75aa87a7eeb8a583cc69c12d0e8665489e2a66 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<menupopup xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" id="d" popup="d">
<script>
function doe() {
var d = document.getElementById('d');
if (d.openPopup) {
  d.openPopup(document.documentElement, 'before_start', 0, 0, false, false);
//  alert(d.state);
}
  
setTimeout(doe, 200);
</script>
</menupopup>