| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../resources/js-test-pre.js"></script> |
| <div role="listitem" aria-label="item 1"><img src='#' width=100 height=100></div> |
| <div role="listitem" aria-label="item 2"><img src='#' width=100 height=100></div> |
| description("This tests that the ARIA roles of list and listitem map correctly to Mac accessibility roles."); |
| if (window.accessibilityController) { |
| // this text field should be required. |
| document.getElementById("body").focus(); |
| var obj = accessibilityController.focusedElement; |
| debug("obj.childAtIndex(0).role = " + obj.childAtIndex(0).role); |
| debug("obj.childAtIndex(0).childAtIndex(0).role = " + obj.childAtIndex(0).childAtIndex(0).role); |
| debug("obj.childAtIndex(0).childAtIndex(1).role = " + obj.childAtIndex(0).childAtIndex(1).role); |
| <script src="../resources/js-test-post.js"></script> |