| OLD | NEW |
| (Empty) |
| 1 <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../../fast/js/resources/js-test-pre.js"></script> | |
| 5 </head> | |
| 6 <body id="body"> | |
| 7 | |
| 8 <main id="main">main</main> | |
| 9 | |
| 10 <p id="description"></p> | |
| 11 <div id="console"></div> | |
| 12 | |
| 13 <script> | |
| 14 | |
| 15 description("This tests that the HTML5 main element correctly maps to AXLand
markMain."); | |
| 16 | |
| 17 if (window.accessibilityController) { | |
| 18 | |
| 19 document.getElementById("body").focus(); | |
| 20 var body = accessibilityController.focusedElement; | |
| 21 var main = accessibilityController.accessibleElementById("main"); | |
| 22 shouldBe("main.role", "'AXRole: AXLandmarkMain'"); | |
| 23 | |
| 24 } | |
| 25 | |
| 26 </script> | |
| 27 | |
| 28 <script src="../../../fast/js/resources/js-test-post.js"></script> | |
| 29 </body> | |
| 30 </html> | |
| OLD | NEW |