summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/treeupdate/test_doc.html
blob: 6bb2863df495dfc1570887b04e593de41cf2612f (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
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
<!DOCTYPE html>
<html>

<head>
  <title>Test document root content mutations</title>
  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />

  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>

  <script type="application/javascript"
          src="../common.js"></script>
  <script type="application/javascript"
          src="../role.js"></script>
  <script type="application/javascript"
          src="../states.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">

    // //////////////////////////////////////////////////////////////////////////
    // Helpers

    function getDocNode(aID) {
      return getNode(aID).contentDocument;
    }
    function getDocChildNode(aID) {
      return getDocNode(aID).body.firstChild;
    }

    function rootContentReplaced(aID, aTextName, aRootContentRole) {
      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getDocChildNode, aID),
        new invokerChecker(EVENT_REORDER, getDocNode, aID),
      ];

      this.finalCheck = function rootContentReplaced_finalCheck() {
        var tree = {
          role: aRootContentRole || ROLE_DOCUMENT,
          children: [
            {
              role: ROLE_TEXT_LEAF,
              name: aTextName,
            },
          ],
        };
        testAccessibleTree(getDocNode(aID), tree);
      };
    }

    function rootContentRemoved(aID) {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, null),
        new invokerChecker(EVENT_REORDER, getDocNode, aID),
      ];

      this.preinvoke = function rootContentRemoved_preinvoke() {
        // Set up target for hide event before we invoke.
        var text = getAccessible(getAccessible(getDocNode(aID)).firstChild);
        this.eventSeq[0].target = text;
      };

      this.finalCheck = function rootContentRemoved_finalCheck() {
        var tree = {
          role: ROLE_DOCUMENT,
          children: [ ],
        };
        testAccessibleTree(getDocNode(aID), tree);
      };
    }

    function rootContentInserted(aID, aTextName) {
      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getDocChildNode, aID),
        new invokerChecker(EVENT_REORDER, getDocNode, aID),
      ];

      this.finalCheck = function rootContentInserted_finalCheck() {
        var tree = {
          role: ROLE_DOCUMENT,
          children: [
            {
              role: ROLE_TEXT_LEAF,
              name: aTextName,
            },
          ],
        };
        testAccessibleTree(getDocNode(aID), tree);
      };
    }

    // //////////////////////////////////////////////////////////////////////////
    // Invokers

    function writeIFrameDoc(aID) {
      this.__proto__ = new rootContentReplaced(aID, "hello");

      this.invoke = function writeIFrameDoc_invoke() {
        var docNode = getDocNode(aID);

        // We can't use open/write/close outside of iframe document because of
        // security error.
        var script = docNode.createElement("script");
        script.textContent = "document.open(); document.write('hello'); document.close();";
        docNode.body.appendChild(script);
      };

      this.getID = function writeIFrameDoc_getID() {
        return "write document";
      };
    }

    /**
     * Replace HTML element.
     */
    function replaceIFrameHTMLElm(aID) {
      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getDocChildNode, aID),
        new invokerChecker(EVENT_REORDER, getDocNode, aID),
      ];

      this.invoke = function replaceIFrameHTMLElm_invoke() {
        var docNode = getDocNode(aID);
        var newHTMLNode = docNode.createElement("html");
        newHTMLNode.innerHTML = `<body><p>New Wave</p></body`;
        docNode.replaceChild(newHTMLNode, docNode.documentElement);
      };

      this.finalCheck = function replaceIFrameHTMLElm_finalCheck() {
        var tree = {
          role: ROLE_DOCUMENT,
          children: [
            {
              role: ROLE_PARAGRAPH,
              children: [
                {
                  role: ROLE_TEXT_LEAF,
                  name: "New Wave",
                },
              ],
            },
          ],
        };
        testAccessibleTree(getDocNode(aID), tree);
      };

      this.getID = function replaceIFrameHTMLElm_getID() {
        return "replace HTML element";
      };
    }

    /**
     * Replace HTML body on new body having ARIA role.
     */
    function replaceIFrameBody(aID) {
      this.__proto__ = new rootContentReplaced(aID, "New Hello");

      this.invoke = function replaceIFrameBody_invoke() {
        var docNode = getDocNode(aID);
        var newBodyNode = docNode.createElement("body");
        var newTextNode = docNode.createTextNode("New Hello");
        newBodyNode.appendChild(newTextNode);
        docNode.documentElement.replaceChild(newBodyNode, docNode.body);
      };

      this.getID = function replaceIFrameBody_getID() {
        return "replace body";
      };
    }

    /**
     * Replace HTML body on new body having ARIA role.
     */
    function replaceIFrameBodyOnARIARoleBody(aID) {
      this.__proto__ = new rootContentReplaced(aID, "New Hello",
                                               ROLE_APPLICATION);

      this.invoke = function replaceIFrameBodyOnARIARoleBody_invoke() {
        var docNode = getDocNode(aID);
        var newBodyNode = docNode.createElement("body");
        var newTextNode = docNode.createTextNode("New Hello");
        newBodyNode.appendChild(newTextNode);
        newBodyNode.setAttribute("role", "application");
        docNode.documentElement.replaceChild(newBodyNode, docNode.body);
      };

      this.getID = function replaceIFrameBodyOnARIARoleBody_getID() {
        return "replace body on body having ARIA role";
      };
    }

    /**
     * Open/close document pair.
     */
    function openIFrameDoc(aID) {
      this.__proto__ = new rootContentRemoved(aID);

      this.invoke = function openIFrameDoc_invoke() {
        this.preinvoke();

        // Open document.
        var docNode = getDocNode(aID);
        var script = docNode.createElement("script");
        script.textContent = "function closeMe() { document.write('Works?'); document.close(); } window.closeMe = closeMe; document.open();";
        docNode.body.appendChild(script);
      };

      this.getID = function openIFrameDoc_getID() {
        return "open document";
      };
    }

    function closeIFrameDoc(aID) {
      this.__proto__ = new rootContentInserted(aID, "Works?");

      this.invoke = function closeIFrameDoc_invoke() {
        // Write and close document.
        getDocNode(aID).write("Works?"); getDocNode(aID).close();
      };

      this.getID = function closeIFrameDoc_getID() {
        return "close document";
      };
    }

    /**
     * Remove/insert HTML element pair.
     */
    function removeHTMLFromIFrameDoc(aID) {
      this.__proto__ = new rootContentRemoved(aID);

      this.invoke = function removeHTMLFromIFrameDoc_invoke() {
        this.preinvoke();

        // Remove HTML element.
        var docNode = getDocNode(aID);
        docNode.firstChild.remove();
      };

      this.getID = function removeHTMLFromIFrameDoc_getID() {
        return "remove HTML element";
      };
    }

    function insertHTMLToIFrameDoc(aID) {
      this.__proto__ = new rootContentInserted(aID, "Haha");

      this.invoke = function insertHTMLToIFrameDoc_invoke() {
        // Insert HTML element.
        var docNode = getDocNode(aID);
        var html = docNode.createElement("html");
        var body = docNode.createElement("body");
        var text = docNode.createTextNode("Haha");
        body.appendChild(text);
        html.appendChild(body);
        docNode.appendChild(html);
      };

      this.getID = function insertHTMLToIFrameDoc_getID() {
        return "insert HTML element document";
      };
    }

    /**
     * Remove/insert HTML body pair.
     */
    function removeBodyFromIFrameDoc(aID) {
      this.__proto__ = new rootContentRemoved(aID);

      this.invoke = function removeBodyFromIFrameDoc_invoke() {
        this.preinvoke();

        // Remove body element.
        var docNode = getDocNode(aID);
        docNode.documentElement.removeChild(docNode.body);
      };

      this.getID = function removeBodyFromIFrameDoc_getID() {
        return "remove body element";
      };
    }

    function insertElmUnderDocElmWhileBodyMissed(aID) {
      this.docNode = null;
      this.inputNode = null;

      function getInputNode() { return this.inputNode; }

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getInputNode.bind(this)),
        new invokerChecker(EVENT_REORDER, getDocNode, aID),
      ];

      this.invoke = function invoke() {
        this.docNode = getDocNode(aID);
        this.inputNode = this.docNode.createElement("input");
        this.docNode.documentElement.appendChild(this.inputNode);
      };

      this.finalCheck = function finalCheck() {
        var tree =
          { DOCUMENT: [
            { ENTRY: [ ] },
          ] };
        testAccessibleTree(this.docNode, tree);

        // Remove aftermath of this test before next test starts.
        this.docNode.documentElement.removeChild(this.inputNode);
      };

      this.getID = function getID() {
        return "Insert element under document element while body is missed.";
      };
    }

    function insertBodyToIFrameDoc(aID) {
      this.__proto__ = new rootContentInserted(aID, "Yo ho ho i butylka roma!");

      this.invoke = function insertBodyToIFrameDoc_invoke() {
        // Insert body element.
        var docNode = getDocNode(aID);
        var body = docNode.createElement("body");
        var text = docNode.createTextNode("Yo ho ho i butylka roma!");
        body.appendChild(text);
        docNode.documentElement.appendChild(body);
      };

      this.getID = function insertBodyToIFrameDoc_getID() {
        return "insert body element";
      };
    }

    function changeSrc(aID) {
      this.containerNode = getNode(aID);

      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, this.containerNode),
      ];

      this.invoke = function changeSrc_invoke() {
        this.containerNode.src = "data:text/html,<html><input></html>";
      };

      this.finalCheck = function changeSrc_finalCheck() {
        var tree =
          { INTERNAL_FRAME: [
            { DOCUMENT: [
              { ENTRY: [ ] },
            ] },
          ] };
        testAccessibleTree(this.containerNode, tree);
      };

      this.getID = function changeSrc_getID() {
        return "change src on iframe";
      };
    }

    // //////////////////////////////////////////////////////////////////////////
    // Test

    // gA11yEventDumpToConsole = true;
    // enableLogging('tree,verbose');

    var gQueue = null;

    function doTest() {
      gQueue = new eventQueue();

      gQueue.push(new writeIFrameDoc("iframe"));
      gQueue.push(new replaceIFrameHTMLElm("iframe"));
      gQueue.push(new replaceIFrameBody("iframe"));
      gQueue.push(new openIFrameDoc("iframe"));
      gQueue.push(new closeIFrameDoc("iframe"));
      gQueue.push(new removeHTMLFromIFrameDoc("iframe"));
      gQueue.push(new insertHTMLToIFrameDoc("iframe"));
      gQueue.push(new removeBodyFromIFrameDoc("iframe"));
      gQueue.push(new insertElmUnderDocElmWhileBodyMissed("iframe"));
      gQueue.push(new insertBodyToIFrameDoc("iframe"));
      gQueue.push(new changeSrc("iframe"));
      gQueue.push(new replaceIFrameBodyOnARIARoleBody("iframe"));

      gQueue.invoke(); // SimpleTest.finish() will be called in the end
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  </script>
</head>
<body>

  <a target="_blank"
     title="Update accessible tree when root element is changed"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=606082">Mozilla Bug 606082</a>
  <a target="_blank"
     title="Elements inserted outside the body aren't accessible"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=608887">Mozilla Bug 608887</a>
  <a target="_blank"
     title="Reorder event for document must be fired after document initial tree creation"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=669263">Mozilla Bug 669263</a>
  <a target="_blank"
     title="Changing the HTML body doesn't pick up ARIA role"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=818407">Mozilla Bug 818407</a>

  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <iframe id="iframe"></iframe>

  <div id="eventdump"></div>
</body>
</html>