| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../fast/js/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; |
| shouldBe("obj.childAtIndex(0).role", "'AXRole: AXList'"); |
| shouldBe("obj.childAtIndex(0).childAtIndex(0).role", "'AXRole: AXGroup'"); |
| shouldBe("obj.childAtIndex(0).childAtIndex(1).role", "'AXRole: AXGroup'"); |
| <script src="../fast/js/resources/js-test-post.js"></script> |