summaryrefslogtreecommitdiffstats
path: root/accessible/tests/browser/e10s/browser_treeupdate_doc.js
blob: 982b039762920faabd085a0238878819f74e1766 (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
/* 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/role.js */
loadScripts({ name: "role.js", dir: MOCHITESTS_DIR });

const iframeSrc = `data:text/html,
  <html>
    <head>
      <meta charset='utf-8'/>
      <title>Inner Iframe</title>
    </head>
    <body id='inner-iframe'></body>
  </html>`;

addAccessibleTask(
  `
  <iframe id="iframe" src="${iframeSrc}"></iframe>`,
  async function (browser, accDoc) {
    // ID of the iframe that is being tested
    const id = "inner-iframe";

    let iframe = findAccessibleChildByID(accDoc, id);

    /* ================= Initial tree check =================================== */
    let tree = {
      role: ROLE_DOCUMENT,
      children: [],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Write iframe document ================================ */
    let reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      let docNode = content.document.getElementById("iframe").contentDocument;
      let newHTMLNode = docNode.createElement("html");
      let newBodyNode = docNode.createElement("body");
      let newTextNode = docNode.createTextNode("New Wave");
      newBodyNode.id = contentId;
      newBodyNode.appendChild(newTextNode);
      newHTMLNode.appendChild(newBodyNode);
      docNode.replaceChild(newHTMLNode, docNode.documentElement);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "New Wave",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Replace iframe HTML element ========================== */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      let docNode = content.document.getElementById("iframe").contentDocument;
      // We can't use open/write/close outside of iframe document because of
      // security error.
      let script = docNode.createElement("script");
      script.textContent = `
      document.open();
      document.write('<body id="${contentId}">hello</body>');
      document.close();`;
      docNode.body.appendChild(script);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "hello",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Replace iframe body ================================== */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      let docNode = content.document.getElementById("iframe").contentDocument;
      let newBodyNode = docNode.createElement("body");
      let newTextNode = docNode.createTextNode("New Hello");
      newBodyNode.id = contentId;
      newBodyNode.appendChild(newTextNode);
      newBodyNode.setAttribute("role", "application");
      docNode.documentElement.replaceChild(newBodyNode, docNode.body);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_APPLICATION,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "New Hello",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Open iframe document ================================= */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      // Open document.
      let docNode = content.document.getElementById("iframe").contentDocument;
      let script = docNode.createElement("script");
      script.textContent = `
      function closeMe() {
        document.write('Works?');
        document.close();
      }
      window.closeMe = closeMe;
      document.open();
      document.write('<body id="${contentId}"></body>');`;
      docNode.body.appendChild(script);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Close iframe document ================================ */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [], () => {
      // Write and close document.
      let docNode = content.document.getElementById("iframe").contentDocument;
      docNode.write("Works?");
      docNode.close();
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "Works?",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Remove HTML from iframe document ===================== */
    reorderEventPromise = waitForEvent(EVENT_REORDER, iframe);
    await invokeContentTask(browser, [], () => {
      // Remove HTML element.
      let docNode = content.document.getElementById("iframe").contentDocument;
      docNode.firstChild.remove();
    });
    let event = await reorderEventPromise;

    ok(
      event.accessible instanceof nsIAccessibleDocument,
      "Reorder should happen on the document"
    );
    tree = {
      role: ROLE_DOCUMENT,
      children: [],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Insert HTML to iframe document ======================= */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      // Insert HTML element.
      let docNode = content.document.getElementById("iframe").contentDocument;
      let html = docNode.createElement("html");
      let body = docNode.createElement("body");
      let text = docNode.createTextNode("Haha");
      body.appendChild(text);
      body.id = contentId;
      html.appendChild(body);
      docNode.appendChild(html);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "Haha",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Remove body from iframe document ===================== */
    reorderEventPromise = waitForEvent(EVENT_REORDER, iframe);
    await invokeContentTask(browser, [], () => {
      // Remove body element.
      let docNode = content.document.getElementById("iframe").contentDocument;
      docNode.documentElement.removeChild(docNode.body);
    });
    event = await reorderEventPromise;

    ok(
      event.accessible instanceof nsIAccessibleDocument,
      "Reorder should happen on the document"
    );
    tree = {
      role: ROLE_DOCUMENT,
      children: [],
    };
    testAccessibleTree(iframe, tree);

    /* ================ Insert element under document element while body missed */
    reorderEventPromise = waitForEvent(EVENT_REORDER, iframe);
    await invokeContentTask(browser, [], () => {
      let docNode = content.document.getElementById("iframe").contentDocument;
      let inputNode = (content.window.inputNode =
        docNode.createElement("input"));
      docNode.documentElement.appendChild(inputNode);
    });
    event = await reorderEventPromise;

    ok(
      event.accessible instanceof nsIAccessibleDocument,
      "Reorder should happen on the document"
    );
    tree = {
      DOCUMENT: [{ ENTRY: [] }],
    };
    testAccessibleTree(iframe, tree);

    reorderEventPromise = waitForEvent(EVENT_REORDER, iframe);
    await invokeContentTask(browser, [], () => {
      let docEl =
        content.document.getElementById("iframe").contentDocument
          .documentElement;
      // Remove aftermath of this test before next test starts.
      docEl.firstChild.remove();
    });
    // Make sure reorder event was fired and that the input was removed.
    await reorderEventPromise;
    tree = {
      role: ROLE_DOCUMENT,
      children: [],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Insert body to iframe document ======================= */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      // Write and close document.
      let docNode = content.document.getElementById("iframe").contentDocument;
      // Insert body element.
      let body = docNode.createElement("body");
      let text = docNode.createTextNode("Yo ho ho i butylka roma!");
      body.appendChild(text);
      body.id = contentId;
      docNode.documentElement.appendChild(body);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_DOCUMENT,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "Yo ho ho i butylka roma!",
        },
      ],
    };
    testAccessibleTree(iframe, tree);

    /* ================= Change source ======================================== */
    reorderEventPromise = waitForEvent(EVENT_REORDER, "iframe");
    await invokeSetAttribute(
      browser,
      "iframe",
      "src",
      `data:text/html,<html><body id="${id}"><input></body></html>`
    );
    event = await reorderEventPromise;

    tree = {
      INTERNAL_FRAME: [{ DOCUMENT: [{ ENTRY: [] }] }],
    };
    testAccessibleTree(event.accessible, tree);
    iframe = findAccessibleChildByID(event.accessible, id);

    /* ================= Replace iframe body on ARIA role body ================ */
    reorderEventPromise = waitForEvent(EVENT_REORDER, id);
    await invokeContentTask(browser, [id], contentId => {
      let docNode = content.document.getElementById("iframe").contentDocument;
      let newBodyNode = docNode.createElement("body");
      let newTextNode = docNode.createTextNode("New Hello");
      newBodyNode.appendChild(newTextNode);
      newBodyNode.setAttribute("role", "application");
      newBodyNode.id = contentId;
      docNode.documentElement.replaceChild(newBodyNode, docNode.body);
    });
    await reorderEventPromise;

    tree = {
      role: ROLE_APPLICATION,
      children: [
        {
          role: ROLE_TEXT_LEAF,
          name: "New Hello",
        },
      ],
    };
    testAccessibleTree(iframe, tree);
  },
  { iframe: true, remoteIframe: true }
);