summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/focus/cross-origin-ancestor-activeelement-after-child-lose-focus.sub.html
blob: 1b84b43f1c487b708405e41ed96565b487d8708b (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
<!doctype html>
<head>
<meta charset=utf-8>
<title>Ancestor's activeElement should be cleared when child loses focus</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/resources/testdriver.js"></script>
<script src="/resources/testdriver-vendor.js"></script>
</head>
<body>
<input placeholder="input in top level"/>
<iframe></iframe>
<script>
const outerIFrame = document.querySelector('iframe');
setup({ explicit_done: true });
function runTest() {
  test(() => {
    assert_equals(outerIFrame.contentDocument.activeElement, outerIFrame.contentDocument.body,
      "Initially, the activeElement of the outer iframe should be <body>");

    const innerIFrame = outerIFrame.contentDocument.createElement("iframe");

    window.onmessage = function(event) {
      if (event.data != "ready") {
        return;
      }

      // We receive an message when the innerIFrame is ready and its input is focused.
      // outerIframe is the ancestor of inner iframe, so the activeElement of
      // it should be the inner iframe.
      assert_equals(outerIFrame.contentDocument.activeElement, innerIFrame,
        "The activeElement of the outer iframe should be the inner iframe");

      // Now we focus the input in the top level
      document.querySelector("input").focus();

      // Wait for a bit to let whatever the code that might change the focus to run
      window.requestAnimationFrame(function() {
        window.requestAnimationFrame(function() {
          window.requestAnimationFrame(function() {
            // Since inner iframe lost its focus, the activeElement of outer iframe
            // should be cleared as well, hence <body> should be focused.
            assert_equals(outerIFrame.contentDocument.activeElement, outerIFrame.contentDocument.body,
              "The activeElement of the outer iframe should be reverted back to <body>");
            assert_equals(document.activeElement, document.querySelector("input"),
              "The activeElement of the top-level document should the input");
            done();
          })
        });
      });
    }

    // Opens the cross-origin inner iframe with a page that contains an input element.
    innerIFrame.src = "http://{{domains[www1]}}:{{ports[http][0]}}/focus/support/cross-origin-ancestor-activeelement-after-child-lose-focus-helper.html";
    outerIFrame.contentDocument.body.appendChild(innerIFrame);
  });
}

window.onload = function() {
  runTest();
}
</script>
</body>