blob: ba2a9c7657357b25ec33431504a78968636270e1 (
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
|
<!doctype html>
<meta charset="utf-8">
<title>Focus event after different site iframe gets focus middle</title>
<h1>Middle</h1><br>
<iframe src="https://{{hosts[][www]}}:{{ports[https][0]}}/focus/support/focus-event-after-iframe-gets-focus-inner.html"></iframe>
<script>
let middlelog = "middlelog:";
let iframe = document.querySelector("iframe");
window.onmessage = function(e) {
if (e.data == "focus") {
iframe.contentWindow.postMessage("focus", "*");
} else if (e.data == "getlog") {
iframe.contentWindow.postMessage("getlog", "*");
} else {
parent.postMessage(middlelog + e.data, "*");
}
};
window.onfocus = function() {
middlelog += "windowfocus,";
};
window.onblur = function() {
middlelog += "windowblur,";
};
</script>
|