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

<head>
  <title>ARIA state change event 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="../states.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">


    /**
     * Do tests.
     */
    var gQueue = null;

    //gA11yEventDumpID = "eventdump"; // debugging
    //gA11yEventDumpToConsole = true; // debugging

    function expandNode(aID, aIsExpanded)
    {
      this.DOMNode = getNode(aID);

      this.eventSeq = [
        new expandedStateChecker(aIsExpanded, this.DOMNode)
      ];

      this.invoke = function expandNode_invoke()
      {
        this.DOMNode.setAttribute("aria-expanded",
                                  (aIsExpanded ? "true" : "false"));
      };

      this.getID = function expandNode_getID()
      {
        return prettyName(aID) + " aria-expanded changed to '" + aIsExpanded + "'";
      };
    }

    function busyify(aID, aIsBusy)
    {
      this.DOMNode = getNode(aID);

      this.eventSeq = [
        new stateChangeChecker(STATE_BUSY, kOrdinalState, aIsBusy, this.DOMNode)
      ];

      this.invoke = function busyify_invoke()
      {
        this.DOMNode.setAttribute("aria-busy", (aIsBusy ? "true" : "false"));
      };

      this.getID = function busyify_getID()
      {
        return prettyName(aID) + " aria-busy changed to '" + aIsBusy + "'";
      };
    }

    function setAttrOfMixedType(aID, aAttr, aState, aValue)
    {
      this.DOMNode = getNode(aID);

      this.eventSeq = [
        new stateChangeChecker(aState, kOrdinalState,
                               aValue == "true", this.DOMNode)
      ];

      if (hasState(aID, STATE_MIXED) || aValue == "mixed") {
        this.eventSeq.push(
          new stateChangeChecker(STATE_MIXED, kOrdinalState,
                                 aValue == "mixed", this.DOMNode)
        );
      }

      this.invoke = function setAttrOfMixedType_invoke()
      {
        this.DOMNode.setAttribute(aAttr, aValue);
      };

      this.getID = function setAttrOfMixedType_getID()
      {
        return prettyName(aID) + " " + aAttr + " changed to '" + aValue + "'";
      };
    }

    function setPressed(aID, aValue)
    {
      this.__proto__ =
        new setAttrOfMixedType(aID, "aria-pressed", STATE_PRESSED, aValue);
    }

    function setChecked(aID, aValue)
    {
      this.__proto__ =
        new setAttrOfMixedType(aID, "aria-checked", STATE_CHECKED, aValue);
    }

    function buildQueueForAttr(aList, aQueue, aID, aInvokerFunc)
    {
      for (var i = 0; i < aList.length; i++) {
        for (var j = i + 1; j < aList.length; j++) {
          // XXX: changes from/to "undefined"/"" shouldn't fire state change
          // events, bug 472142.
          aQueue.push(new aInvokerFunc(aID, aList[i]));
          aQueue.push(new aInvokerFunc(aID, aList[j]));
        }
      }
    }

    function buildQueueForAttrOfMixedType(aQueue, aID, aInvokerFunc)
    {
      var list = [ "", "undefined", "false", "true", "mixed" ];
      buildQueueForAttr(list, aQueue, aID, aInvokerFunc);
    }

    function buildQueueForAttrOfBoolType(aQueue, aID, aInvokerFunc)
    {
      var list = [ "", "undefined", "false", "true" ];
      buildQueueForAttr(list, aQueue, aID, aInvokerFunc);
    }

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

      gQueue.push(new expandNode("section", true));
      gQueue.push(new expandNode("section", false));
      gQueue.push(new expandNode("div", true));
      gQueue.push(new expandNode("div", false));

      gQueue.push(new busyify("aria_doc", true));
      gQueue.push(new busyify("aria_doc", false));

      buildQueueForAttrOfMixedType(gQueue, "pressable", setPressed);
      buildQueueForAttrOfMixedType(gQueue, "pressable_native", setPressed);
      buildQueueForAttrOfMixedType(gQueue, "checkable", setChecked);
      buildQueueForAttrOfBoolType(gQueue, "checkableBool", setChecked);

      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=551684"
     title="No statechange event for aria-expanded on native HTML elements, is fired on ARIA widgets">
    Mozilla Bug 551684
  </a><br>
  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=648133"
     title="fire state change event for aria-busy">
    Mozilla Bug 648133
  </a><br>
  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=467143"
     title="mixed state change event is fired for focused accessible only">
    Mozilla Bug 467143
  </a>
  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=989958"
     title="Pressed state is not exposed on a button element with aria-pressed attribute">
    Mozilla Bug 989958
  </a>
  <a target="_blank"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=1136563"
     title="Support ARIA 1.1 switch role">
    Mozilla Bug 1136563
  </a>

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

  <!-- aria-expanded -->
  <div id="section" role="section" aria-expanded="false">expandable section</div>
  <div id="div" aria-expanded="false">expandable native div</div>

  <!-- aria-busy -->
  <div id="aria_doc" role="document" tabindex="0">A document</div>

  <!-- aria-pressed -->
  <div id="pressable" role="button"></div>
  <button id="pressable_native"></button>

  <!-- aria-checked -->
  <div id="checkable" role="checkbox"></div>
  <div id="checkableBool" role="switch"></div>
</body>
</html>