summaryrefslogtreecommitdiffstats
path: root/accessible/tests/mochitest/treeupdate/test_imagemap.html
blob: 7befef69050fdae8db418be8b5c9a50cff5aab8c (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
<!DOCTYPE html>
<html>
<head>
  <title>HTML img map accessible tree update tests</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="../role.js"></script>
  <script type="application/javascript"
          src="../events.js"></script>

  <script type="application/javascript">
    function insertArea(aImageMapID, aMapID) {
      this.imageMap = getAccessible(aImageMapID);
      this.mapNode = getNode(aMapID);

      function getInsertedArea(aThisObj) {
        return aThisObj.imageMap.firstChild;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getInsertedArea, this),
        new invokerChecker(EVENT_REORDER, this.imageMap),
      ];

      this.invoke = function insertArea_invoke() {
        var areaElm = document.createElement("area");
        areaElm.setAttribute("href",
                             // eslint-disable-next-line @microsoft/sdl/no-insecure-url
                             "http://www.bbc.co.uk/radio4/atoz/index.shtml#a");
        areaElm.setAttribute("coords", "0,0,13,14");
        areaElm.setAttribute("alt", "a");
        areaElm.setAttribute("shape", "rect");

        this.mapNode.insertBefore(areaElm, this.mapNode.firstChild);
      };

      this.finalCheck = function insertArea_finalCheck() {
        var accTree =
          { IMAGE_MAP: [
            {
              role: ROLE_LINK,
              name: "a",
              children: [ ],
            },
            {
              role: ROLE_LINK,
              name: "b",
              children: [ ],
            },
          ] };
        testAccessibleTree(this.imageMap, accTree);
      };

      this.getID = function insertArea_getID() {
        return "insert area element";
      };
    }

    function appendArea(aImageMapID, aMapID) {
      this.imageMap = getAccessible(aImageMapID);
      this.mapNode = getNode(aMapID);

      function getAppendedArea(aThisObj) {
        return aThisObj.imageMap.lastChild;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_SHOW, getAppendedArea, this),
        new invokerChecker(EVENT_REORDER, this.imageMap),
      ];

      this.invoke = function appendArea_invoke() {
        var areaElm = document.createElement("area");
        areaElm.setAttribute("href",
                             // eslint-disable-next-line @microsoft/sdl/no-insecure-url
                             "http://www.bbc.co.uk/radio4/atoz/index.shtml#c");
        areaElm.setAttribute("coords", "34,0,47,14");
        areaElm.setAttribute("alt", "c");
        areaElm.setAttribute("shape", "rect");

        this.mapNode.appendChild(areaElm);
      };

      this.finalCheck = function appendArea_finalCheck() {
        var accTree =
          { IMAGE_MAP: [
            {
              role: ROLE_LINK,
              name: "a",
              children: [ ],
            },
            {
              role: ROLE_LINK,
              name: "b",
              children: [ ],
            },
            {
              role: ROLE_LINK,
              name: "c",
              children: [ ],
            },
          ] };
        testAccessibleTree(this.imageMap, accTree);
      };

      this.getID = function appendArea_getID() {
        return "append area element";
      };
    }

    function removeArea(aImageMapID, aMapID) {
      this.imageMap = getAccessible(aImageMapID);
      this.area = null;
      this.mapNode = getNode(aMapID);

      function getRemovedArea(aThisObj) {
        return aThisObj.area;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getRemovedArea, this),
        new invokerChecker(EVENT_REORDER, this.imageMap),
      ];

      this.invoke = function removeArea_invoke() {
        this.area = this.imageMap.firstChild;
        this.mapNode.removeChild(this.mapNode.firstElementChild);
      };

      this.finalCheck = function removeArea_finalCheck() {
        var accTree =
          { IMAGE_MAP: [
            {
              role: ROLE_LINK,
              name: "b",
              children: [ ],
            },
            {
              role: ROLE_LINK,
              name: "c",
              children: [ ],
            },
          ] };
        testAccessibleTree(this.imageMap, accTree);
      };

      this.getID = function removeArea_getID() {
        return "remove area element";
      };
    }

    function removeNameOnMap(aImageMapContainerID, aImageMapID, aMapID) {
      this.container = getAccessible(aImageMapContainerID);
      this.containerNode = this.container.DOMNode;
      this.imageMap = getAccessible(aImageMapID);
      this.imgNode = this.imageMap.DOMNode;
      this.mapNode = getNode(aMapID);

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, this.imageMap),
        new invokerChecker(EVENT_SHOW, this.imgNode),
        new invokerChecker(EVENT_REORDER, this.container),
      ];

      this.invoke = function removeNameOnMap_invoke() {
        this.mapNode.removeAttribute("name");
      };

      this.finalCheck = function removeNameOnMap_finalCheck() {
        var accTree =
          { SECTION: [
            { GRAPHIC: [ ] },
          ] };
        testAccessibleTree(this.container, accTree);
      };

      this.getID = function removeNameOnMap_getID() {
        return "remove @name on map element";
      };
    }

    function restoreNameOnMap(aImageMapContainerID, aImageMapID, aMapID) {
      this.container = getAccessible(aImageMapContainerID);
      this.containerNode = this.container.DOMNode;
      this.imageMap = null;
      this.imgNode = getNode(aImageMapID);
      this.mapNode = getNode(aMapID);

      function getImageMap(aThisObj) {
        return aThisObj.imageMap;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getImageMap, this),
        new invokerChecker(EVENT_SHOW, this.imgNode),
        new invokerChecker(EVENT_REORDER, this.container),
      ];

      this.invoke = function restoreNameOnMap_invoke() {
        this.imageMap = getAccessible(aImageMapID);
        this.mapNode.setAttribute("name", "atoz_map");

        // XXXhack: force repainting of the image (see bug 745788 for details).
        waveOverImageMap(aImageMapID);
      };

      this.finalCheck = function removeNameOnMap_finalCheck() {
        var accTree =
          { SECTION: [
            { IMAGE_MAP: [
              { LINK: [ ] },
              { LINK: [ ] },
            ] },
          ] };
        testAccessibleTree(this.container, accTree);
      };

      this.getID = function removeNameOnMap_getID() {
        return "restore @name on map element";
      };
    }

    function removeMap(aImageMapContainerID, aImageMapID, aMapID) {
      this.container = getAccessible(aImageMapContainerID);
      this.containerNode = this.container.DOMNode;
      this.imageMap = null;
      this.imgNode = getNode(aImageMapID);
      this.mapNode = getNode(aMapID);

      function getImageMap(aThisObj) {
        return aThisObj.imageMap;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getImageMap, this),
        new invokerChecker(EVENT_SHOW, this.imgNode),
        new invokerChecker(EVENT_REORDER, this.container),
      ];

      this.invoke = function removeMap_invoke() {
        this.imageMap = getAccessible(aImageMapID);
        this.mapNode.remove();
      };

      this.finalCheck = function removeMap_finalCheck() {
        var accTree =
          { SECTION: [
            { GRAPHIC: [ ] },
          ] };
        testAccessibleTree(this.container, accTree);
      };

      this.getID = function removeMap_getID() {
        return "remove map element";
      };
    }

    function insertMap(aImageMapContainerID, aImageID) {
      this.container = getAccessible(aImageMapContainerID);
      this.containerNode = this.container.DOMNode;
      this.image = null;
      this.imgMapNode = getNode(aImageID);

      function getImage(aThisObj) {
        return aThisObj.image;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getImage, this),
        new invokerChecker(EVENT_SHOW, this.imgMapNode),
        new invokerChecker(EVENT_REORDER, this.container),
      ];

      this.invoke = function insertMap_invoke() {
        this.image = getAccessible(aImageID);

        var map = document.createElement("map");
        map.setAttribute("name", "atoz_map");
        map.setAttribute("id", "map");

        var area = document.createElement("area");
        area.setAttribute("href",
                          // eslint-disable-next-line @microsoft/sdl/no-insecure-url
                          "http://www.bbc.co.uk/radio4/atoz/index.shtml#b");
        area.setAttribute("coords", "17,0,30,14");
        area.setAttribute("alt", "b");
        area.setAttribute("shape", "rect");

        map.appendChild(area);

        this.containerNode.appendChild(map);
      };

      this.finalCheck = function insertMap_finalCheck() {
        var accTree =
          { SECTION: [
            { IMAGE_MAP: [
              { LINK: [ ] },
            ] },
          ] };
        testAccessibleTree(this.container, accTree);
      };

      this.getID = function insertMap_getID() {
        return "insert map element";
      };
    }

    function hideImageMap(aContainerID, aImageID) {
      this.container = getAccessible(aContainerID);
      this.imageMap = null;
      this.imageMapNode = getNode(aImageID);

      function getImageMap(aThisObj) {
        return aThisObj.imageMap;
      }

      this.eventSeq = [
        new invokerChecker(EVENT_HIDE, getImageMap, this),
        new invokerChecker(EVENT_REORDER, aContainerID),
      ];

      this.invoke = function hideImageMap_invoke() {
        this.imageMap = getAccessible(this.imageMapNode);
        this.imageMapNode.style.display = "none";
      };

      this.finalCheck = function hideImageMap_finalCheck() {
        var accTree =
          { SECTION: [ ] };
        testAccessibleTree(this.container, accTree);
      };

      this.getID = function hideImageMap_getID() {
        return "display:none image";
      };
    }

    // gA11yEventDumpToConsole = true; // debug stuff
    function doPreTest() {
      waitForImageMap("imgmap", doTest);
    }

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

      gQueue.push(new insertArea("imgmap", "map"));
      gQueue.push(new appendArea("imgmap", "map"));
      gQueue.push(new removeArea("imgmap", "map"));
      gQueue.push(new removeNameOnMap("container", "imgmap", "map"));
      gQueue.push(new restoreNameOnMap("container", "imgmap", "map"));
      gQueue.push(new removeMap("container", "imgmap", "map"));
      gQueue.push(new insertMap("container", "imgmap"));
      gQueue.push(new hideImageMap("container", "imgmap"));

      // enableLogging("tree"); // debug stuff
      // gQueue.onFinish = function() { disableLogging("tree"); }

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

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

</head>
<body>

  <a target="_blank"
     title="Image map accessible tree is not updated when image map is changed"
     href="https://bugzilla.mozilla.org/show_bug.cgi?id=732389">
    Mozilla Bug 732389
  </a>
  <p id="display"></p>
  <div id="content" style="display: none"></div>
  <pre id="test">
  </pre>

  <map name="atoz_map" id="map">
    <area href="http://www.bbc.co.uk/radio4/atoz/index.shtml#b"
          coords="17,0,30,14" alt="b" shape="rect">
  </map>

  <div id="container">
    <img id="imgmap" width="447" height="15"
         usemap="#atoz_map"
         src="../letters.gif"><!--
    Important: no whitespace between the <img> and the </div>, so we
    don't end up with textframes there, because those would be reflected
    in our accessible tree in some cases.
    --></div>

</body>
</html>