summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/fission/browser_reframe_visibility.js
blob: 8aee02037c457edf7de24aeeda115ade8dd0d3f1 (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

/* import-globals-from ../../mochitest/states.js */
/* import-globals-from ../../mochitest/role.js */
loadScripts({ name: "states.js", dir: MOCHITESTS_DIR });
loadScripts({ name: "role.js", dir: MOCHITESTS_DIR });

addAccessibleTask(
  `<input id="textbox" value="hello"/>`,
  async function (browser, iframeDocAcc, contentDocAcc) {
    info(
      "Check that the IFRAME and the IFRAME document are accessible initially."
    );
    let iframeAcc = findAccessibleChildByID(contentDocAcc, DEFAULT_IFRAME_ID);
    ok(!isDefunct(iframeAcc), "IFRAME should be accessible");
    ok(!isDefunct(iframeDocAcc), "IFRAME document should be accessible");

    info(
      "Hide the IFRAME and check that it's gone along with the IFRAME document."
    );
    let onEvents = waitForEvent(EVENT_REORDER, contentDocAcc);
    await SpecialPowers.spawn(browser, [DEFAULT_IFRAME_ID], contentId => {
      content.document.getElementById(contentId).style.display = "none";
    });
    await onEvents;

    ok(
      isDefunct(iframeAcc),
      "IFRAME accessible should be defunct when hidden."
    );
    if (gIsRemoteIframe) {
      ok(
        !isDefunct(iframeDocAcc),
        "IFRAME document's accessible is not defunct when the IFRAME is hidden and fission is enabled."
      );
    } else {
      ok(
        isDefunct(iframeDocAcc),
        "IFRAME document's accessible is defunct when the IFRAME is hidden and fission is not enabled."
      );
    }
    ok(
      !findAccessibleChildByID(contentDocAcc, DEFAULT_IFRAME_ID),
      "No accessible for an IFRAME present."
    );
    ok(
      !findAccessibleChildByID(contentDocAcc, DEFAULT_IFRAME_DOC_BODY_ID),
      "No accessible for the IFRAME document present."
    );

    info(
      "Show the IFRAME and check that a new accessible is created for it as " +
        "well as the IFRAME document."
    );

    const events = [[EVENT_REORDER, contentDocAcc]];
    if (!gIsRemoteIframe) {
      events.push([
        EVENT_STATE_CHANGE,
        event => {
          const scEvent = event.QueryInterface(nsIAccessibleStateChangeEvent);
          const id = getAccessibleDOMNodeID(event.accessible);
          return (
            id === DEFAULT_IFRAME_DOC_BODY_ID &&
            scEvent.state === STATE_BUSY &&
            scEvent.isEnabled === false
          );
        },
      ]);
    }
    onEvents = waitForEvents(events);
    await SpecialPowers.spawn(browser, [DEFAULT_IFRAME_ID], contentId => {
      content.document.getElementById(contentId).style.display = "block";
    });
    await onEvents;

    iframeAcc = findAccessibleChildByID(contentDocAcc, DEFAULT_IFRAME_ID);
    const newiframeDocAcc = iframeAcc.firstChild;

    ok(!isDefunct(iframeAcc), "IFRAME should be accessible");
    is(iframeAcc.childCount, 1, "IFRAME accessible should have a single child");
    ok(newiframeDocAcc, "IFRAME document exists");
    ok(!isDefunct(newiframeDocAcc), "IFRAME document should be accessible");
    if (gIsRemoteIframe) {
      ok(
        !isDefunct(iframeDocAcc),
        "Original IFRAME document accessible should not be defunct when fission is enabled."
      );
      is(
        iframeAcc.firstChild,
        iframeDocAcc,
        "Existing accessible is used for a IFRAME document."
      );
    } else {
      ok(
        isDefunct(iframeDocAcc),
        "Original IFRAME document accessible should be defunct when fission is not enabled."
      );
      isnot(
        iframeAcc.firstChild,
        iframeDocAcc,
        "A new accessible is created for a IFRAME document."
      );
    }
    is(
      iframeAcc.firstChild,
      newiframeDocAcc,
      "A new accessible for a IFRAME document is the child of the IFRAME accessible"
    );
  },
  { topLevel: false, iframe: true, remoteIframe: true }
);