blob: cadcf126f5442e1dfb58d935991d6beb7ad4ec7b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<!doctype html>
001-1
<script>
addEventListener("pageshow",
function(e) {
parent.events.push(e);
if (parent.events.length == 2) {
parent.do_test();
}
}, false);
</script>
|