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