summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/mozilla/tests/focus/iframe-focus-event-after-iframe-gets-focus.html
blob: 82a1346ec6e38c5b135369a528158a025b777a1e (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!doctype html>
<meta charset=utf-8>
<title>Test focus event after iframe gets focus</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
function waitForMessage(target, checkFn) {
  return new Promise(resolve => {
    target.addEventListener("message", e => {
      if (checkFn && !checkFn(e)) {
        return;
      }
      resolve();
    }, { once: true });
  });
}

function start(w) {
  w.postMessage("start", "*");
}

// This will send message to outer frame and also inner frame to ask them
// send the log they collect back, the logs of outer and inner will be
// concatenated.
async function getLog(w) {
  let log = "";
  step_timeout(function() {
    w.postMessage("getlog", "*");
  }, 0);
  await waitForMessage(window, (e) => {
    log = e.data;
    return true;
  });
  return log;
}

function runSingleTest(url, focusIframeFunction, expectedResult, description) {
  promise_test(async t => {
    let w = window.open(url);
    t.add_cleanup(() => { w.close(); });
    await waitForMessage(window, e => e.data === "ready");
    start(w);
    focusIframeFunction(w);
    assert_equals(await getLog(w), expectedResult);
  }, description);
}

function runTests(url, description) {
  // Test calling iframe.focus();
  runSingleTest(url, (w) => {
    w.postMessage("iframefocus", "*");
  }, "outerlog:windowblur,innerlog:windowfocus,",
  description + " via calling iframe.focus()");

  // Test calling iframe.contentWindow.focus();
  runSingleTest(url, (w) => {
    w.postMessage("iframecontentWindowfocus", "*");
  }, "outerlog:windowblur,innerlog:windowfocus,",
  description + " via calling iframe.contentWindow.focus()");

  // Test calling window.focus() in iframe;
  runSingleTest(url, (w) => {
    w.postMessage("windowfocus", "*");
  }, "outerlog:windowblur,innerlog:willfocuswindow,windowfocus,didfocuswindow,",
  description + " via calling window.focus() in iframe");
}

// Test same site iframe
runTests("support/iframe-focus-event-after-same-site-iframe-gets-focus-outer.html",
         "Check iframe focus event after same site iframe gets focus");

// Test different site iframe
runTests("support/iframe-focus-event-after-different-site-iframe-gets-focus-outer.sub.html",
         "Check iframe focus event after different site iframe gets focus");
</script>