summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/support/activeelement-after-focusing-different-site-iframe-outer-contentwindow.sub.html
blob: fd66cbaa55c2044922af9d232ca2276ddf5b3028 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!doctype html>
<meta charset="utf-8">
<title>activeElement when focusing different-site iframe's contenWindow</title>
<script>
let log = "";
function getLog() {
    return log;
}
window.onmessage = function(e) {
    log += e.data;
};
window.onload = function() {
    log += "outeronload,";
    log += "activeElement:" + document.activeElement.tagName + ",";
    log += "willfocusiframe,";
    document.getElementsByTagName("iframe")[0].contentWindow.focus();
    log += "didfocusiframe,";
    log += "activeElement:" + document.activeElement.tagName + ",";
    log += "willbluriframe,";
    document.getElementsByTagName("iframe")[0].contentWindow.blur();
    log += "didbluriframe,";
    log += "activeElement:" + document.activeElement.tagName + ",";
    log += "willspineventloop,"
    opener.step_timeout(function() {
        opener.postMessage(getLog(), "*");
    }, 1500);
}
</script>
<iframe src="http://{{hosts[alt][www]}}:{{ports[http][0]}}/focus/support/activeelement-after-focusing-different-site-iframe-inner-contentwindow.html"></iframe>