mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-22 16:37:31 +09:00
18 lines
682 B
HTML
18 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>
|