mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
18 lines
594 B
HTML
18 lines
594 B
HTML
<html>
|
|
<head>
|
|
<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(null, "parent260264");
|
|
try { grandparent.report(popup) }
|
|
finally { popup && popup.close() }
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|