| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <script src="../resources/js-test.js"></script> | 2 <script src="../resources/js-test.js"></script> |
| 3 <script src="../resources/accessibility-helper.js"></script> | 3 <script src="../resources/accessibility-helper.js"></script> |
| 4 <header>This is a Header for this page</header> | 4 <header>This is a Header for this page</header> |
| 5 <h1>Heading</h1> | 5 <h1>Heading</h1> |
| 6 <div>Division</div> | 6 <div>Division</div> |
| 7 <p>Paragraph</p> | 7 <p>Paragraph</p> |
| 8 <ruby> | 8 <ruby> |
| 9 韓國<rp>(</rp><rt>한국</rt><rp>)</rp> | 9 韓國<rp>(</rp><rt>한국</rt><rp>)</rp> |
| 10 </ruby> | 10 </ruby> |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 Text in a pre | 50 Text in a pre |
| 51 element | 51 element |
| 52 </pre> | 52 </pre> |
| 53 <section> | 53 <section> |
| 54 <header> | 54 <header> |
| 55 <h1>Most important heading here</h1> | 55 <h1>Most important heading here</h1> |
| 56 </header> | 56 </header> |
| 57 <p>Section</p> | 57 <p>Section</p> |
| 58 <footer> | 58 <footer> |
| 59 <p>Footer in section</p> | 59 <p>Footer in section</p> |
| 60 </footer> | 60 </footer> |
| 61 </section> | 61 </section> |
| 62 <address> | 62 <address> |
| 63 Written by Julie<br> | 63 Written by Julie<br> |
| 64 Visit us at:www.chromium.org<br> | 64 Visit us at:www.chromium.org<br> |
| 65 </address> | 65 </address> |
| 66 <p>January <dialog open>This is an open dialog window</dialog></p> | 66 <p>January <dialog open>This is an open dialog window</dialog></p> |
| 67 <iframe src="about:blank"></iframe> | |
| 68 <iframe src="about:blank" role="presentation"></iframe> | |
| 69 <table> | 67 <table> |
| 70 <caption>Caption</caption> | 68 <caption>Caption</caption> |
| 71 <tr> | 69 <tr> |
| 72 <td>Cell1</td> | 70 <td>Cell1</td> |
| 73 <td>Cell2</td> | 71 <td>Cell2</td> |
| 74 </tr> | 72 </tr> |
| 75 </table> | 73 </table> |
| 76 <figure> | 74 <figure> |
| 77 <img width="12" height="10" src="data:image/gif;base64,R0lGODdhDAAKAJEAAP///wA
A/wAAAAAAACwAAAAADAAKAAACEoyPAMihnRY0bzo5a8ZQd94oBQA7" alt="blue"> | 75 <img width="12" height="10" src="data:image/gif;base64,R0lGODdhDAAKAJEAAP///wA
A/wAAAAAAACwAAAAADAAKAAACEoyPAMihnRY0bzo5a8ZQd94oBQA7" alt="blue"> |
| 78 <figcaption>Fig1. - Blue Box</figcaption> | 76 <figcaption>Fig1. - Blue Box</figcaption> |
| 79 </figure> | 77 </figure> |
| 80 <embed src="xxx.mp3"> | 78 <embed src="xxx.mp3"> |
| 81 <footer> | 79 <footer> |
| 82 <p>This is a footer.</p> | 80 <p>This is a footer.</p> |
| 83 </footer> | 81 </footer> |
| 84 <p>End of test</p> | 82 <p>End of test</p> |
| 85 <p id="description"></p> | 83 <p id="description"></p> |
| 86 <div id="console"></div> | 84 <div id="console"></div> |
| 87 <script> | 85 <script> |
| 88 description("This test make sure that unfocuasable elements are mapped implicitl
y to AX roles."); | 86 description("This test make sure that unfocuasable elements are mapped implicitl
y to AX roles."); |
| 89 | 87 |
| 90 if (window.testRunner) | 88 if (window.testRunner) |
| 91 testRunner.dumpAsText(); | 89 testRunner.dumpAsText(); |
| 92 if (window.accessibilityController) | 90 if (window.accessibilityController) |
| 93 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1); | 91 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1); |
| 94 </script> | 92 </script> |
| 95 </html> | 93 </html> |
| OLD | NEW |