| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> |
| <script src="../../resources/js-test-pre.js"></script> |
| <main id="main">main</main> |
| description("This tests that the HTML5 main element correctly maps to AXLandmarkMain."); |
| if (window.accessibilityController) { |
| document.getElementById("body").focus(); |
| var body = accessibilityController.focusedElement; |
| var main = accessibilityController.accessibleElementById("main"); |
| shouldBe("main.role", "'AXRole: AXGroup'"); |
| shouldBe("main.subrole", "'AXSubrole: AXLandmarkMain'"); |
| <script src="../../resources/js-test-post.js"></script> |