blob: 222f73d075d4f7038468cf2a82a3b9aa0bfd98ab [file] [log] [blame]
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>iframe focuses parent same site inner</title>
</head>
<body>
<script>
window.onmessage = function() {
parent.focus();
setTimeout(function() {
parent.postMessage("finished", "*");
}, 500);
}
</script>
</body>
</html>