blob: 8f2098e3fbd36cafb8cd92f53bbed55fa9e7d23c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iframe focuses parent different site inner</title>
</head>
<body>
<script>
window.onmessage = function() {
parent.focus();
setTimeout(function() {
parent.postMessage("finished", "*");
}, 500);
}
</script>
</body>
</html>
|