summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/focus/support/iframe-focus-event-after-same-site-iframe-gets-focus-outer.html
blob: 06040d6485a992aa7884e82c5b62a63d7b93ec3f (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
40
41
42
<!doctype html>
<meta charset="utf-8">
<title>Iframe focus event after same site iframe gets focus outer</title>
<iframe src="iframe-focus-event-after-iframe-gets-focus-inner.html"></iframe>
<script>
let outerlog = "outerlog:";

let iframe = document.querySelector("iframe");
window.onmessage = function(e) {
  if (e.data == "start") {
    window.onfocus = function() {
      outerlog += "windowfocus,";
    };
  } else if (e.data == "iframefocus") {
    iframe.focus();
  } else if (e.data == "iframecontentWindowfocus") {
    iframe.contentWindow.focus();
  } else if (e.data == "windowfocus") {
    iframe.contentWindow.postMessage("windowfocus", "*");
  } else if (e.data == "getlog") {
    iframe.contentWindow.postMessage("getlog", "*");
  } else {
    opener.postMessage(outerlog + e.data, "*");
  }
};

window.onload = function() {
  window.onblur = function() {
    outerlog += "windowblur,";
  };

  iframe.onfocus = function() {
    outerlog += "iframefocus,";
  };

  iframe.onblur = function() {
    outerlog += "iframeblur,";
  };

  opener.postMessage("ready", "*");
};
</script>