summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/focus/support/focus-next-tick-before-iframe-loaded-different-site-inner.html
blob: 2c1b35f2b237f77cf3226a927245f481b4c4f19a (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>focus() from next tick before iframe loaded different site</title>
</head>
<body>
<script>
    window.onload = function() {
        parent.postMessage("onload", "*");
    }
    document.body.onfocus = function() {
        parent.postMessage("onfocus", "*");
    }
</script>
</body>
</html>