summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/tree/test_txtctrl.xul
blob: cb43b498f7dd7ff8fdfcb70ec4acca9d6fd7723d (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
<?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 XUL textbox and textarea hierarchy tests">

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

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

  <script type="application/javascript">
  <![CDATA[
    //gA11yEventDumpToConsole = true;
    //enableLogging("tree,verbose"); // debug stuff

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

    function doTest()
    {
      //////////////////////////////////////////////////////////////////////////
      // textboxes

      var accTree =
        { SECTION: [
          { ENTRY: [ { TEXT_LEAF: [] } ] },
          { MENUPOPUP: [] }
        ] };

      // default textbox
      testAccessibleTree("txc", accTree);

      // multiline
      testAccessibleTree("txc_multiline", accTree);

      //////////////////////////////////////////////////////////////////////////
      // search textbox
      accTree =
        { SECTION: [
          { ENTRY: [ { TEXT_LEAF: [] } ] },
          { MENUPOPUP: [] }
        ] };
      testAccessibleTree("txc_search", accTree);

      //////////////////////////////////////////////////////////////////////////
      // search textbox with search button

      if (MAC) {
        accTree =
          { SECTION: [
            { ENTRY: [ { TEXT_LEAF: [] } ] },
            { MENUPOPUP: [] }
          ] };
      } else {
        accTree =
          { SECTION: [
            { ENTRY: [ { TEXT_LEAF: [] } ] },
            { PUSHBUTTON: [] },
            { MENUPOPUP: [] }
          ] };
      }

      testAccessibleTree("txc_search_searchbutton", accTree);

      //////////////////////////////////////////////////////////////////////////
      // number textbox

      accTree =
        { SECTION: [
          { ENTRY: [ { TEXT_LEAF: [] } ] },
          { MENUPOPUP: [] },
          { PUSHBUTTON: [] },
          { PUSHBUTTON: [] }
        ] };

      testAccessibleTree("txc_number", accTree);

      //////////////////////////////////////////////////////////////////////////
      // password textbox

      accTree =
        { SECTION: [
          { PASSWORD_TEXT: [ { TEXT_LEAF: [] } ] },
          { MENUPOPUP: [] }
        ] };

      testAccessibleTree("txc_password", accTree);

      //////////////////////////////////////////////////////////////////////////
      // autocomplete textbox

      accTree = {
        // textbox
        role: ROLE_AUTOCOMPLETE,
        children: [
          {
            // html:input
            role: ROLE_ENTRY,
            children: [
              {
                // #text
                role: ROLE_TEXT_LEAF,
                children: []
              }
            ]
          },
          {
            // xul:menupopup
            role: ROLE_COMBOBOX_LIST,
            children: []
          }
        ]
      };

      function test_AutocompleteControl() {
        testAccessibleTree("txc_autocomplete", accTree);
        SimpleTest.finish();
      }

      // XPFE and Toolkit autocomplete widgets differ.
      var txc = document.getElementById("txc_autocomplete");
      if ("clearResults" in txc) {
        SimpleTest.ok(true, "Testing (Old) XPFE autocomplete widget.");

        // Popup is always created. (See code below.)

        accTree.children.push(
          {
            // xul:panel
            role: ROLE_COMBOBOX_LIST,
            children: [
              {
                // xul:tree
                role: ROLE_TABLE,
                children: [
                  {
                    // xul:treecols
                    role: ROLE_LIST,
                    children: [
                      {
                        // xul:treecol
                        role: ROLE_COLUMNHEADER,
                        children: []
                      }
                    ]
                  }
                ]
              }
            ]
          }
        );
        test_AutocompleteControl();

      } else {
        SimpleTest.ok(true, "Testing (New) Toolkit autocomplete widget.");

        // Dumb access to trigger popup lazy creation.
        dump("Trigget popup lazy creation");
        waitForEvent(EVENT_REORDER, txc, test_AutocompleteControl);
        txc.popup;

        accTree.children.push(
          {
            role: ROLE_LIST,
            children: [
              {
                role: ROLE_LIST,
                children: [
                  {
                    role: ROLE_COLUMNHEADER,
                    children: []
                  }
                ]
              }
            ]
          }
        );
      }
    }

    SimpleTest.waitForExplicitFinish();
    addA11yLoadEvent(doTest);
  ]]>
  </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=542824"
         title="Create child accessibles for text controls from native anonymous content">
        Mozilla Bug 542824
      </a><br/>
      <p id="display"></p>
      <div id="content" style="display: none">
      </div>
      <pre id="test">
      </pre>
    </body>

    <vbox flex="1">
      <textbox id="txc" value="hello"/>
      <textbox id="txc_search" type="search" value="hello"/>
      <textbox id="txc_search_searchbutton" searchbutton="true" type="search" value="hello"/>
      <textbox id="txc_number" type="number" value="44"/>
      <textbox id="txc_password" type="password" value="hello"/>
      <textbox id="txc_multiline" multiline="true" value="hello"/>
      <textbox id="txc_autocomplete" type="autocomplete" value="hello"/>
    </vbox>
  </hbox>

</window>