| <script src="../../resources/js-test-pre.js"></script> |
| <div role="menuitem">An ARIA menu item</div> |
| <div role="option">An ARIA option</div> |
| description("This tests that having elements with ARIA role 'option' or 'menuitem' as children of something of Group role does not crash."); |
| if (window.layoutController) { |
| if (window.accessibilityController) { |
| document.getElementById("body").focus(); |
| webArea = accessibilityController.focusedElement; |
| // Just trying to get the accessible objects for the elements with |
| // role 'option' and 'menuitem' shouldn't make this crash. |
| element = webArea.childAtIndex(0); |
| element = webArea.childAtIndex(1); |
| <script src="../../resources/js-test-post.js"></script> |