OLD | NEW |
1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../resources/js-test.js"></script> | 4 <script src="../resources/js-test.js"></script> |
5 </head> | 5 </head> |
6 <body id="body"> | 6 <body id="body"> |
7 | 7 |
8 <img id="image" usemap="#map" src="data:image/gif;base64,R0lGODlhAQABAIAAAOTm7AA
AACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" width="100" height="50" alt=""> | 8 <div id="group" role="group"> |
| 9 <img id="image" usemap="#map" src="data:image/gif;base64,R0lGODlhAQABAIAAAOTm7
AAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==" width="100" height="50" alt=""> |
| 10 </div> |
9 <map name="map" id="map"> | 11 <map name="map" id="map"> |
10 <area tabindex="0" role="button" shape="rect" coords="0,0,50,50" href="#" ti
tle="Example 1"> | 12 <area tabindex="0" role="button" shape="rect" coords="0,0,50,50" href="#" ti
tle="Example 1"> |
11 <area tabindex="0" role="button" shape="rect" coords="50,0,100,50" href="#"
title="Example 2"> | 13 <area tabindex="0" role="button" shape="rect" coords="50,0,100,50" href="#"
title="Example 2"> |
12 </map> | 14 </map> |
13 | 15 |
14 <p id="description"></p> | 16 <p id="description"></p> |
15 <div id="console"></div> | 17 <div id="console"></div> |
16 | 18 |
17 <script> | 19 <script> |
18 | 20 |
19 description("This tests that you can set an ARIA role on image map elements.
"); | 21 description("This tests that you can set an ARIA role on image map elements.
"); |
20 | 22 |
21 if (window.accessibilityController) { | 23 if (window.accessibilityController) { |
22 document.body.focus(); | 24 var group = accessibilityController.accessibleElementById("group"); |
23 var group = accessibilityController.focusedElement.childAtIndex(0); | |
24 shouldBe("group.childAtIndex(0).role", "'AXRole: AXButton'"); | 25 shouldBe("group.childAtIndex(0).role", "'AXRole: AXButton'"); |
25 shouldBe("group.childAtIndex(1).role", "'AXRole: AXButton'"); | 26 shouldBe("group.childAtIndex(1).role", "'AXRole: AXButton'"); |
26 } | 27 } |
27 | 28 |
28 </script> | 29 </script> |
29 | 30 |
30 </body> | 31 </body> |
31 </html> | 32 </html> |
OLD | NEW |