summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/events/test_focus_listcontrols.xul
blob: db45048e28e19e630a0256cdeb5995b3be736712 (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
<?xml version="1.0"?>
<?xml-stylesheet href="chrome://global/skin" type="text/css"?>
<?xml-stylesheet href="chrome://mochikit/content/tests/SimpleTest/test.css"
                 type="text/css"?>

<window xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
        title="Accessible focus event testing">

  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js" />
  <script type="application/javascript"
          src="chrome://mochikit/content/tests/SimpleTest/EventUtils.js"/>

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

  <script type="application/javascript">
    //gA11yEventDumpID = "eventdump"; // debug stuff
    gA11yEventDumpToConsole = true; // debug stuff

    var gQueue = null;
    function doTests()
    {
      // Test focus events.
      gQueue = new eventQueue();

      gQueue.push(new synthFocus("listbox", new focusChecker("lb_item1")));
      gQueue.push(new synthDownKey("lb_item1", new focusChecker("lb_item2")));
      gQueue.push(new synthTab("lb_item2", new focusChecker("mslb_item1")));
      gQueue.push(new synthDownKey("mslb_item1", new focusChecker("mslb_item2"), { shiftKey: true }));
      gQueue.push(new synthTab("mslb_item2", new focusChecker("emptylistbox")));
      gQueue.push(new synthFocus("mcolumnlistbox", new focusChecker("mclb_item1")));
      gQueue.push(new synthDownKey("mclb_item1", new focusChecker("mclb_item2")));
      gQueue.push(new synthFocus("headerlistbox", new focusChecker("hlb_item1")));
      gQueue.push(new synthDownKey("hlb_item1", new focusChecker("hlb_item2")));

      gQueue.push(new synthFocus("richlistbox", new focusChecker("rlb_item1")));
      gQueue.push(new synthDownKey("rlb_item1", new focusChecker("rlb_item2")));
      gQueue.push(new synthFocus("multiselrichlistbox", new focusChecker("msrlb_item1")));
      gQueue.push(new synthDownKey("msrlb_item1", new focusChecker("msrlb_item2"), { shiftKey: true }));
      gQueue.push(new synthFocus("emptyrichlistbox", new focusChecker("emptyrichlistbox")));

      gQueue.push(new synthFocus("menulist"));
      gQueue.push(new synthClick("menulist", new focusChecker("ml_tangerine")));
      gQueue.push(new synthDownKey("ml_tangerine", new focusChecker("ml_marmalade")));
      gQueue.push(new synthEscapeKey("ml_marmalade", new focusChecker("menulist")));
if (!MAC) {
      // On Windows, items get selected during navigation.
      let expectedItem = WIN ? "ml_tangerine" : "ml_marmalade";
      gQueue.push(new synthDownKey("menulist", new nofocusChecker(expectedItem)));
      gQueue.push(new synthOpenComboboxKey("menulist", new focusChecker(expectedItem)));
      gQueue.push(new synthEnterKey(expectedItem, new focusChecker("menulist")));
} else {
      todo(false, "Bug 746531 - timeouts of last three menulist tests on OS X");
}

      var textentry = getAccessible("emenulist").firstChild;
      gQueue.push(new synthFocus("emenulist", new focusChecker(textentry)));
      gQueue.push(new synthDownKey(textentry, new nofocusChecker("eml_tangerine")));
      gQueue.push(new synthUpKey(textentry, new focusChecker("eml_marmalade")));
      gQueue.push(new synthEnterKey("eml_marmalade", new focusChecker(textentry)));
      gQueue.push(new synthOpenComboboxKey("emenulist", new focusChecker("eml_marmalade")));
      gQueue.push(new synthEscapeKey("eml_marmalade", new focusChecker(textentry)));

      // no focus events for unfocused list controls when current item is
      // changed.
      gQueue.push(new synthFocus("emptylistbox"));

      gQueue.push(new changeCurrentItem("listbox", "lb_item1"));
      gQueue.push(new changeCurrentItem("richlistbox", "rlb_item1"));
if (!MAC) {
      gQueue.push(new changeCurrentItem("menulist", WIN ? "ml_marmalade" : "ml_tangerine"));
}
      gQueue.push(new changeCurrentItem("emenulist", "eml_tangerine"));

      gQueue.invoke(); // Will call SimpleTest.finish();
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTests);
  </script>

  <hbox flex="1" style="overflow: auto;">
    <body xmlns="http://www.w3.org/1999/xhtml">
      <a target="_blank"
         href="https://bugzilla.mozilla.org/show_bug.cgi?id=433418"
         title="Accessibles for focused HTML Select elements are not getting focused state">
        Mozilla Bug 433418
      </a>
      <a target="_blank"
         href="https://bugzilla.mozilla.org/show_bug.cgi?id=474893"
         title="List controls should fire a focus event on the selected child when tabbing or when the selected child changes while the list is focused">
        Mozilla Bug 474893
      </a>
      <a target="_blank"
         href="https://bugzilla.mozilla.org/show_bug.cgi?id=552368"
         title=" fire focus event on document accessible whenever the root or body element is focused">
        Mozilla Bug 552368
      </a>
      <p id="display"></p>
      <div id="content" style="display: none"></div>
      <pre id="test">
      </pre>
    </body>

    <vbox flex="1">
      <listbox id="listbox" rows="3">
        <listitem id="lb_item1" label="item1"/>
        <listitem id="lb_item2" label="item1"/>
      </listbox>
      <listbox id="multisellistbox" rows="3" seltype="multiple">
        <listitem id="mslb_item1" label="item1"/>
        <listitem id="mslb_item2" label="item1"/>
      </listbox>
      <listbox id="emptylistbox" rows="3"/>
      <listbox id="mcolumnlistbox" rows="3">
        <listcols>
          <listcol/>
          <listcol/>
        </listcols>
        <listitem id="mclb_item1">
          <listcell label="George"/>
          <listcell label="House Painter"/>
        </listitem>
        <listitem id="mclb_item2">
          <listcell label="Mary Ellen"/>
          <listcell label="Candle Maker"/>
        </listitem>
      </listbox>
      <listbox id="headerlistbox" rows="3">
        <listhead>
          <listheader label="Name"/>
          <listheader label="Occupation"/>
        </listhead>
        <listcols>
          <listcol/>
          <listcol flex="1"/>
        </listcols>
        <listitem id="hlb_item1">
          <listcell label="George"/>
          <listcell label="House Painter"/>
        </listitem>
        <listitem id="hlb_item2">
          <listcell label="Mary Ellen"/>
          <listcell label="Candle Maker"/>
        </listitem>
      </listbox>

      <richlistbox id="richlistbox">
        <richlistitem id="rlb_item1">
          <description>A XUL Description!</description>
        </richlistitem>
        <richlistitem id="rlb_item2">
          <button label="A XUL Button"/>
        </richlistitem>
      </richlistbox>
      <richlistbox id="multiselrichlistbox" seltype="multiple">
        <richlistitem id="msrlb_item1">
          <description>A XUL Description!</description>
        </richlistitem>
        <richlistitem id="msrlb_item2">
          <button label="A XUL Button"/>
        </richlistitem>
      </richlistbox>
      <richlistbox id="emptyrichlistbox" seltype="multiple"/>

      <menulist id="menulist">
        <menupopup>
          <menuitem id="ml_tangerine" label="tangerine trees"/>
          <menuitem id="ml_marmalade" label="marmalade skies"/>
        </menupopup>
      </menulist>
      <menulist id="emenulist" editable="true">
        <menupopup>
          <menuitem id="eml_tangerine" label="tangerine trees"/>
          <menuitem id="eml_marmalade" label="marmalade skies"/>
        </menupopup>
      </menulist>

      <vbox id="eventdump"/>
    </vbox>
  </hbox>
</window>