mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00:00
19 lines
682 B
HTML
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>
|