summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/events/test_aria_owns.html
blob: 3c638ad838018cd4127559a9f1d81f407c2f66fd (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
<html>

<head>
  <title>Aria-owns targets shouldn't be on invalidation list so shouldn't have
         show/hide events</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 src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"></script>

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

  <script type="application/javascript">

    // //////////////////////////////////////////////////////////////////////////
    // Do tests.

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

    /**
     * Aria-owns target shouldn't have a show event.
     * Markup:
     * <div id="t1_fc" aria-owns="t1_owns"></div>
     * <span id="t1_owns"></div>
     */
    function testAriaOwns() {
      this.parent = getNode("t1");
      this.fc = document.createElement("div");
      this.fc.setAttribute("id", "t1_fc");
      this.owns = document.createElement("span");
      this.owns.setAttribute("id", "t1_owns");

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, this.fc),
        new unexpectedInvokerChecker(EVENT_SHOW, this.owns),
      ];

      this.invoke = function testAriaOwns_invoke() {
        getNode("t1").appendChild(this.fc);
        getNode("t1").appendChild(this.owns);
        getNode("t1_fc").setAttribute("aria-owns", "t1_owns");
      };

      this.getID = function testAriaOwns_getID() {
        return "Aria-owns target shouldn't have show event";
      };
    }

    /**
     * Target of both aria-owns and other aria attribute like aria-labelledby
     * shouldn't have a show event.
     * Markup:
     * <div id="t2_fc" aria-owns="t1_owns"></div>
     * <div id="t2_sc" aria-labelledby="t2_owns"></div>
     * <span id="t2_owns"></div>
     */
    function testAriaOwnsAndLabelledBy() {
      this.parent = getNode("t2");
      this.fc = document.createElement("div");
      this.fc.setAttribute("id", "t2_fc");
      this.sc = document.createElement("div");
      this.sc.setAttribute("id", "t2_sc");
      this.owns = document.createElement("span");
      this.owns.setAttribute("id", "t2_owns");

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, this.fc),
        new invokerChecker(EVENT_SHOW, this.sc),
        new unexpectedInvokerChecker(EVENT_SHOW, this.owns),
      ];

      this.invoke = function testAriaOwns_invoke() {
        getNode("t2").appendChild(this.fc);
        getNode("t2").appendChild(this.sc);
        getNode("t2").appendChild(this.owns);
        getNode("t2_fc").setAttribute("aria-owns", "t2_owns");
        getNode("t2_sc").setAttribute("aria-labelledby", "t2_owns");
      };

      this.getID = function testAriaOwns_getID() {
        return "Aria-owns and aria-labelledby target shouldn't have show event";
      };
    }

    var gQueue = null;
    function doTests() {
      gQueue = new eventQueue();
      gQueue.push(new testAriaOwns());
      gQueue.push(new testAriaOwnsAndLabelledBy());

      gQueue.invoke(); // Will call SimpleTest.finish();
    }
    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTests);
  </script>
</head>

<body>

  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=1296420"
     title="Aria-owns targets shouldn't be on invalidation list so shouldn't
            have show/hide events">
    Mozilla Bug 1296420
  </a><br>

  <div id="testContainer">
    <div id="t1"></div>

    <div id="t2"></div>
  </div>

</body>
</html>