summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/support/iframe-focuses-parent-same-site-inner.html
blob: 222f73d075d4f7038468cf2a82a3b9aa0bfd98ab (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 same site inner</title>
</head>
<body>
<script>
window.onmessage = function() {
    parent.focus();
    setTimeout(function() {
        parent.postMessage("finished", "*");
    }, 500);
}
</script>
</body>
</html>