summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/activeelement-after-focusing-different-site-iframe-then-immediately-focusing-back.html
blob: b2385705bc66717c5c0faf7a3dfd8de54e32813c (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
<!doctype html>
<meta charset=utf-8>
<title>activeElement when focusing different-site iframe then immediately focusing back</title>
<script src=/resources/testharness.js></script>
<script src=/resources/testharnessreport.js></script>
<script>
function waitForEvent(target, event, checkFn) {
  return new Promise(resolve => {
    target.addEventListener(event, e => {
      if (checkFn && !checkFn(e)) {
        return;
      }
      resolve();
    }, { once: true });
  });
}

// 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 waitForEvent(window, "message", (e) => {
    log = e.data;
    return true;
  });
  return log;
}

// This will send message to outer frame to ask it's activeElement.
async function getActiveElement(w) {
  let activeElement = "";
  step_timeout(function() {
    w.postMessage("getActiveElement", "*");
  }, 0);
  await waitForEvent(window, "message", (e) => {
    activeElement = e.data;
    return true;
  });
  return activeElement;
}

promise_test(async t => {
  let w = window.open("support/activeelement-after-focusing-different-site-iframe-then-immediately-focusing-back-outer.sub.html");
  t.add_cleanup(() => { w.close(); });
  await waitForEvent(window, "message", e => e.data === "ready");
  w.postMessage("focus", "*");
  assert_equals(await getLog(w), 'outerlog:willfocusiframe,didfocusiframe,willfocusinput,inputfocus,didfocusinput,innerlog:windowfocus,windowblur,');
  assert_equals(await getActiveElement(w), 'INPUT');
}, "Check focus event and active element after focusing different site iframe then immediately focusing back");
</script>