summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/crashtests/752038-iframe.html
blob: fc14c16f80155be2946dcfe7607fb782b63a0611 (plain)
1
2
3
4
5
6
7
8
9
10
11
<script>
function boom()
{
  document.location.hash = "#1";
  document.open();
  window.parent.postMessage({}, '*');
}
</script>

<body onload="boom();"></body>