gecko/dom/tests/mochitest/bugs/grandchild_bug260264.html
Peter Van der Beken 69e7c5ae55 Bug 918345 - Turn on WebIDL binding generation for Window and hook it up to quickstubs. r=bz.
--HG--
extra : rebase_source : 7bde7ddfe297e189ffa678ca1d9c34000bc904ec
2013-10-08 17:51:42 +02:00

19 lines
682 B
HTML

<html>
<head>
<script type="application/javascript" src="/tests/SimpleTest/EventUtils.js"></script>
<script type="application/javascript" src="utils_bug260264.js"></script>
</head>
<body>
<a id="nested link" href="javascript:(function(){})()">nested link</a>
<script type="application/javascript">
var event = location.hash.split("#").pop();
send(document.getElementById("nested link"), event, function() {
var popup = window.open("http://example.com"),
grandparent = window.open("", "parent260264");
try { grandparent.report(popup) }
finally { popup && popup.close() }
});
</script>
</body>
</html>