summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/treeupdate/test_ariaowns.html
blob: 44fc22a2d589d675d01d7c3dc0d54082164a3238 (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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
<!DOCTYPE html>
<html>

<head>
  <title>@aria-owns attribute testing</title>

  <link rel="stylesheet" type="text/css"
        href="chrome://mochikit/content/tests/SimpleTest/test.css" />

  <script type="application/javascript"
          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="../events.js"></script>

  <script type="application/javascript">

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

    function changeARIAOwns()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_button")),
        // no hide for t1_subdiv because it is contained by hidden t1_checkbox
        new invokerChecker(EVENT_HIDE, getNode("t1_checkbox")),
        new invokerChecker(EVENT_SHOW, getNode("t1_checkbox")),
        new invokerChecker(EVENT_SHOW, getNode("t1_button")),
        new invokerChecker(EVENT_SHOW, getNode("t1_subdiv")),
        new invokerChecker(EVENT_REORDER, getNode("t1_container"))
      ];

      this.invoke = function setARIAOwns_invoke()
      {
        // children are swapped by ARIA owns
        var tree =
          { SECTION: [
              { CHECKBUTTON: [
                { SECTION: [] }
              ] },
              { PUSHBUTTON: [ ] }
          ] };
        testAccessibleTree("t1_container", tree);

        getNode("t1_container").
          setAttribute("aria-owns", "t1_button t1_subdiv");
      }

      this.finalCheck = function setARIAOwns_finalCheck()
      {
        // children are swapped again, button and subdiv are appended to
        // the children.
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] }, // checkbox, native order
              { PUSHBUTTON: [ ] }, // button, rearranged by ARIA own
              { SECTION: [ ] } // subdiv from the subtree, ARIA owned
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function setARIAOwns_getID()
      {
        return "Change @aria-owns attribute";
      }
    }

    function removeARIAOwns()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_button")),
        new invokerChecker(EVENT_HIDE, getNode("t1_subdiv")),
        new orderChecker(),
        new asyncInvokerChecker(EVENT_SHOW, getNode("t1_button")),
        new asyncInvokerChecker(EVENT_SHOW, getNode("t1_subdiv")),
        new orderChecker(),
        new invokerChecker(EVENT_REORDER, getNode("t1_container")),
        new unexpectedInvokerChecker(EVENT_REORDER, getNode("t1_checkbox"))
      ];

      this.invoke = function removeARIAOwns_invoke()
      {
        getNode("t1_container").removeAttribute("aria-owns");
      }

      this.finalCheck = function removeARIAOwns_finalCheck()
      {
        // children follow the DOM order
        var tree =
          { SECTION: [
              { PUSHBUTTON: [ ] },
              { CHECKBUTTON: [
                  { SECTION: [] }
              ] }
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function removeARIAOwns_getID()
      {
        return "Remove @aria-owns attribute";
      }
    }

    function setARIAOwns()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_button")),
        new invokerChecker(EVENT_HIDE, getNode("t1_subdiv")),
        new invokerChecker(EVENT_SHOW, getNode("t1_button")),
        new invokerChecker(EVENT_SHOW, getNode("t1_subdiv")),
        new invokerChecker(EVENT_REORDER, getNode("t1_container"))
      ];

      this.invoke = function setARIAOwns_invoke()
      {
        getNode("t1_container").
          setAttribute("aria-owns", "t1_button t1_subdiv");
      }

      this.finalCheck = function setARIAOwns_finalCheck()
      {
        // children are swapped again, button and subdiv are appended to
        // the children.
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] }, // checkbox
              { PUSHBUTTON: [ ] }, // button, rearranged by ARIA own
              { SECTION: [ ] } // subdiv from the subtree, ARIA owned
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function setARIAOwns_getID()
      {
        return "Set @aria-owns attribute";
      }
    }

    function addIdToARIAOwns()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_group")),
        new invokerChecker(EVENT_SHOW, getNode("t1_group")),
        new invokerChecker(EVENT_REORDER, document)
      ];

      this.invoke = function addIdToARIAOwns_invoke()
      {
        getNode("t1_container").
          setAttribute("aria-owns", "t1_button t1_subdiv t1_group");
      }

      this.finalCheck = function addIdToARIAOwns_finalCheck()
      {
        // children are swapped again, button and subdiv are appended to
        // the children.
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] }, // t1_checkbox
              { PUSHBUTTON: [ ] }, // button, t1_button
              { SECTION: [ ] }, // subdiv from the subtree, t1_subdiv
              { GROUPING: [ ] } // group from outside, t1_group
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function addIdToARIAOwns_getID()
      {
        return "Add id to @aria-owns attribute value";
      }
    }

    function appendEl()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getNode, "t1_child3"),
        new invokerChecker(EVENT_REORDER, getNode("t1_container"))
      ];

      this.invoke = function appendEl_invoke()
      {
        var div = document.createElement("div");
        div.setAttribute("id", "t1_child3");
        div.setAttribute("role", "radio")
        getNode("t1_container").appendChild(div);
      }

      this.finalCheck = function appendEl_finalCheck()
      {
        // children are invalidated, they includes aria-owns swapped kids and
        // newly inserted child.
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] }, // existing explicit, t1_checkbox
              { RADIOBUTTON: [ ] }, // new explicit, t1_child3
              { PUSHBUTTON: [ ] }, // ARIA owned, t1_button
              { SECTION: [ ] }, // ARIA owned, t1_subdiv
              { GROUPING: [ ] } // ARIA owned, t1_group
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function appendEl_getID()
      {
        return "Append child under @aria-owns element";
      }
    }

    function removeEl()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode, "t1_checkbox"),
        new invokerChecker(EVENT_SHOW, getNode, "t1_checkbox"),
        new invokerChecker(EVENT_REORDER, getNode("t1_container"))
      ];

      this.invoke = function removeEl_invoke()
      {
        // remove a container of t1_subdiv
        getNode("t1_span").parentNode.removeChild(getNode("t1_span"));
      }

      this.finalCheck = function removeEl_finalCheck()
      {
        // subdiv should go away
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] }, // explicit, t1_checkbox
              { RADIOBUTTON: [ ] }, // explicit, t1_child3
              { PUSHBUTTON: [ ] }, // ARIA owned, t1_button
              { GROUPING: [ ] } // ARIA owned, t1_group
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function removeEl_getID()
      {
        return "Remove a container of ARIA owned element";
      }
    }

    function removeId()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_group")),
        new invokerChecker(EVENT_SHOW, getNode("t1_group")),
        new invokerChecker(EVENT_REORDER, document)
      ];

      this.invoke = function removeId_invoke()
      {
        getNode("t1_group").removeAttribute("id");
      }

      this.finalCheck = function removeId_finalCheck()
      {
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] },
              { RADIOBUTTON: [ ] },
              { PUSHBUTTON: [ ] } // ARIA owned, t1_button
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function removeId_getID()
      {
        return "Remove ID from ARIA owned element";
      }
    }

    function setId()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getNode("t1_grouptmp")),
        new invokerChecker(EVENT_SHOW, getNode("t1_grouptmp")),
        new invokerChecker(EVENT_REORDER, document)
      ];

      this.invoke = function setId_invoke()
      {
        getNode("t1_grouptmp").setAttribute("id", "t1_group");
      }

      this.finalCheck = function setId_finalCheck()
      {
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] },
              { RADIOBUTTON: [ ] },
              { PUSHBUTTON: [ ] }, // ARIA owned, t1_button
              { GROUPING: [ ] } // ARIA owned, t1_group, previously t1_grouptmp
          ] };
        testAccessibleTree("t1_container", tree);
      }

      this.getID = function setId_getID()
      {
        return "Set ID that is referred by ARIA owns";
      }
    }

    /**
     * Remove an accessible DOM element containing an element referred by
     * ARIA owns.
     */
    function removeA11eteiner()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, getNode("t2_container1"))
      ];

      this.invoke = function removeA11eteiner_invoke()
      {
        var tree =
          { SECTION: [
              { CHECKBUTTON: [ ] } // ARIA owned, 't2_owned'
          ] };
        testAccessibleTree("t2_container1", tree);

        getNode("t2_container2").removeChild(getNode("t2_container3"));
      }

      this.finalCheck = function removeA11eteiner_finalCheck()
      {
        var tree =
          { SECTION: [
          ] };
        testAccessibleTree("t2_container1", tree);
      }

      this.getID = function removeA11eteiner_getID()
      {
        return "Remove an accessible DOM element containing an element referred by ARIA owns";
      }
    }

    /**
     * Steal an element from other ARIA owns element. This use case guarantees
     * that result of setAttribute/removeAttribute doesn't depend on their order.
     */
    function stealFromOtherARIAOwns()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, getNode("t3_container2"))
      ];

      this.invoke = function stealFromOtherARIAOwns_invoke()
      {
        getNode("t3_container2").setAttribute("aria-owns", "t3_child");
      }

      this.finalCheck = function stealFromOtherARIAOwns_finalCheck()
      {
        var tree =
          { SECTION: [
          ] };
        testAccessibleTree("t3_container1", tree);

        tree =
          { SECTION: [
            { CHECKBUTTON: [
            ] }
          ] };
        testAccessibleTree("t3_container2", tree);
      }

      this.getID = function stealFromOtherARIAOwns_getID()
      {
        return "Steal an element from other ARIA owns element";
      }
    }

    function appendElToRecacheChildren()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, getNode("t3_container2"))
      ];

      this.invoke = function appendElToRecacheChildren_invoke()
      {
        var div = document.createElement("div");
        div.setAttribute("role", "radio")
        getNode("t3_container2").appendChild(div);
      }

      this.finalCheck = function appendElToRecacheChildren_finalCheck()
      {
        var tree =
          { SECTION: [
          ] };
        testAccessibleTree("t3_container1", tree);

        tree =
          { SECTION: [
            { RADIOBUTTON: [ ] },
            { CHECKBUTTON: [ ] } // ARIA owned
          ] };
        testAccessibleTree("t3_container2", tree);
      }

      this.getID = function appendElToRecacheChildren_getID()
      {
        return "Append a child under @aria-owns element to trigger children recache";
      }
    }

    function showHiddenElement()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, getNode("t4_container1"))
      ];

      this.invoke = function showHiddenElement_invoke()
      {
        var tree =
          { SECTION: [
            { RADIOBUTTON: [] }
          ] };
        testAccessibleTree("t4_container1", tree);

        getNode("t4_child1").style.display = "block";
      }

      this.finalCheck = function showHiddenElement_finalCheck()
      {
        var tree =
          { SECTION: [
            { CHECKBUTTON: [] },
            { RADIOBUTTON: [] }
          ] };
        testAccessibleTree("t4_container1", tree);
      }

      this.getID = function showHiddenElement_getID()
      {
        return "Show hidden ARIA owns referred element";
      }
    }

    function rearrangeARIAOwns(aContainer, aAttr, aIdList, aRoleList)
    {
      this.eventSeq = [];
      for (var id of aIdList) {
        this.eventSeq.push(new invokerChecker(EVENT_HIDE, getNode(id)));
      }

      for (var id of aIdList) {
        this.eventSeq.push(new invokerChecker(EVENT_SHOW, getNode(id)));
      }
      this.eventSeq.push(new invokerChecker(EVENT_REORDER, getNode(aContainer)));

      this.invoke = function rearrangeARIAOwns_invoke()
      {
        getNode(aContainer).setAttribute("aria-owns", aAttr);
      }

      this.finalCheck = function rearrangeARIAOwns_finalCheck()
      {
        var tree = { SECTION: [ ] };
        for (var role of aRoleList) {
          var ch = {};
          ch[role] = [];
          tree["SECTION"].push(ch);
        }
        testAccessibleTree(aContainer, tree);
      }

      this.getID = function rearrangeARIAOwns_getID()
      {
        return `Rearrange @aria-owns attribute to '${aAttr}'`;
      }
    }

    function removeNotARIAOwnedEl(aContainer, aChild)
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, aContainer)
      ];

      this.invoke = function removeNotARIAOwnedEl_invoke()
      {
        var tree = {
          SECTION: [
            { TEXT_LEAF: [ ] },
            { GROUPING: [ ] }
          ]
        };
        testAccessibleTree(aContainer, tree);

        getNode(aContainer).removeChild(getNode(aChild));
      }

      this.finalCheck = function removeNotARIAOwnedEl_finalCheck()
      {
        var tree = {
          SECTION: [
            { GROUPING: [ ] }
          ]
        };
        testAccessibleTree(aContainer, tree);
      }

      this.getID = function removeNotARIAOwnedEl_getID()
      {
        return `remove not ARIA owned child`;
      }
    }

    function setARIAOwnsOnElToRemove(aParent, aChild)
    {
      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getAccessible(aParent))
      ];

      this.invoke = function setARIAOwnsOnElToRemove_invoke()
      {
        getNode(aChild).setAttribute("aria-owns", "no_id");
        getNode(aParent).removeChild(getNode(aChild));
        getNode(aParent).parentNode.removeChild(getNode(aParent));
      }

      this.getID = function setARIAOwnsOnElToRemove_getID()
      {
        return `set ARIA owns on an element, and then remove it, and then remove its parent`;
      }
    }

    /**
     * Set ARIA owns on inaccessible span element that contains
     * accessible children. This will move children from the container for
     * the span.
     */
    function test8()
    {
      this.eventSeq = [
        new invokerChecker(EVENT_REORDER, "t8_container")
      ];

      this.invoke = function test8_invoke()
      {
        var tree =
          { SECTION: [
            { PUSHBUTTON: [] },
            { ENTRY: [] },
            { ENTRY: [] },
            { ENTRY: [] }
          ] };
        testAccessibleTree("t8_container", tree);

        getNode(t8_container).setAttribute("aria-owns", "t8_span t8_button");
      }

      this.finalCheck = function test8_finalCheck()
      {
        var tree =
          { SECTION: [
            { TEXT: [
              { ENTRY: [] },
              { ENTRY: [] },
              { ENTRY: [] }
            ] },
            { PUSHBUTTON: [] }
          ] };
        testAccessibleTree("t8_container", tree);
      }

      this.getID = function test8_getID()
      {
        return `Set ARIA owns on inaccessible span element that contains accessible children`;
      }
    }

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

    //gA11yEventDumpToConsole = true;
    //enableLogging("tree,eventTree,verbose"); // debug stuff

    var gQueue = null;

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

      // test1
      gQueue.push(new changeARIAOwns());
      gQueue.push(new removeARIAOwns());
      gQueue.push(new setARIAOwns());
      gQueue.push(new addIdToARIAOwns());
      gQueue.push(new appendEl());
      gQueue.push(new removeEl());
      gQueue.push(new removeId());
      gQueue.push(new setId());

      // test2
      gQueue.push(new removeA11eteiner());

      // test3
      gQueue.push(new stealFromOtherARIAOwns());
      gQueue.push(new appendElToRecacheChildren());

      // test4
      gQueue.push(new showHiddenElement());

      // test5
      gQueue.push(new rearrangeARIAOwns(
        "t5_container", "t5_checkbox t5_radio t5_button",
        [ "t5_checkbox", "t5_radio", "t5_button" ],
        [ "CHECKBUTTON", "RADIOBUTTON", "PUSHBUTTON" ]));
      gQueue.push(new rearrangeARIAOwns(
        "t5_container", "t5_radio t5_button t5_checkbox",
        [ "t5_radio", "t5_button" ],
        [ "RADIOBUTTON", "PUSHBUTTON", "CHECKBUTTON" ]));

      gQueue.push(new removeNotARIAOwnedEl("t6_container", "t6_span"));

      gQueue.push(new setARIAOwnsOnElToRemove("t7_parent", "t7_child"));

      gQueue.push(new test8());

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

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);

  </script>
</head>

<body>

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

  <div id="t1_container" aria-owns="t1_checkbox t1_button">
    <div role="button" id="t1_button"></div>
    <div role="checkbox" id="t1_checkbox">
      <span id="t1_span">
        <div id="t1_subdiv"></div>
      </span>
    </div>
  </div>
  <div id="t1_group" role="group"></div>
  <div id="t1_grouptmp" role="group"></div>

  <div id="t2_container1" aria-owns="t2_owned"></div>
  <div id="t2_container2">
    <div id="t2_container3"><div id="t2_owned" role="checkbox"></div></div>
  </div>

  <div id="t3_container1" aria-owns="t3_child"></div>
  <div id="t3_child" role="checkbox"></div>
  <div id="t3_container2"></div>

  <div id="t4_container1" aria-owns="t4_child1 t4_child2"></div>
  <div id="t4_container2">
    <div id="t4_child1" style="display:none" role="checkbox"></div>
    <div id="t4_child2" role="radio"></div>
  </div>

  <div id="t5_container">
    <div role="button" id="t5_button"></div>
    <div role="checkbox" id="t5_checkbox"></div>
    <div role="radio" id="t5_radio"></div>
  </div>

  <div id="t6_container" aria-owns="t6_fake">
    <span id="t6_span">hey</span>
  </div>
  <div id="t6_fake" role="group"></div>

  <div id="t7_container">
    <div id="t7_parent">
      <div id="t7_child"></div>
    </div>
  </div>

  <div id="t8_container">
    <input id="t8_button" type="button"><span id="t8_span"><input><input><input></span>
  </div>
</body>

</html>