blob: 6f38616380d4c838950655aa1950decd0434087c (
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
30
31
32
33
34
35
36
37
38
39
|
<!doctype html>
<meta charset="utf-8">
<title>activeElement when focusing different-site iframe then immediately focusing back outer</title>
<input type="text">
<iframe src="http://{{hosts[alt][www]}}:{{ports[http][0]}}/focus/support/focus-event-after-focusing-iframes-inner.html"></iframe>
<script>
let outerlog = "outerlog:";
let iframe = document.querySelector("iframe");
let input = document.querySelector("input");
window.onmessage = function(e) {
if (e.data == "focus") {
outerlog += "willfocusiframe,";
iframe.focus();
outerlog += "didfocusiframe,";
outerlog += "willfocusinput,";
input.focus();
outerlog += "didfocusinput,";
} else if (e.data == "getlog") {
iframe.contentWindow.postMessage("getlog", "*");
} else if (e.data == "getActiveElement") {
opener.postMessage(document.activeElement.tagName, "*");
} else {
opener.postMessage(outerlog + e.data, "*");
}
};
window.onload = function() {
input.onfocus = function() {
outerlog += "inputfocus,";
};
input.onblur = function() {
outerlog += "inputblur,";
};
opener.postMessage("ready", "*");
};
</script>
|