blob: 6c69b710c75570b918e2ccb65e1b90fd2edac41f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
<html>
<head>
<meta charset="utf-8">
<script>
if (opener) {
addEventListener("load", function() {
opener.postMessage("load", "*");
});
}
</script>
</head>
<body>
This file posts a message containing "load" to opener on load completion.
</body>
</html>
|