OLD | NEW |
1 <script src="../resources/js-test.js"></script> | 1 <script src="../resources/js-test.js"></script> |
2 <script src="../resources/accessibility-helper.js"></script> | 2 <script src="../resources/accessibility-helper.js"></script> |
3 <ul role="radiogroup"> | 3 <ul role="radiogroup"> |
4 <li role="radio">Explicit Item 1</li> | 4 <li role="radio">Explicit Item 1</li> |
5 <li role="radio">Explicit Item 2</li> | 5 <li role="radio">Explicit Item 2</li> |
6 <li role="radio">Explicit Item 3</li> | 6 <li role="radio">Explicit Item 3</li> |
7 </ul> | 7 </ul> |
8 <ol> | 8 <ol> |
9 <li>Implicit Item 1</li> | 9 <li>Implicit Item 1</li> |
10 <li>Implicit Item 2</li> | 10 <li>Implicit Item 2</li> |
(...skipping 14 matching lines...) Expand all Loading... |
25 <p>End of test</p> | 25 <p>End of test</p> |
26 <p id="description"></p> | 26 <p id="description"></p> |
27 <div id="console"></div> | 27 <div id="console"></div> |
28 <script> | 28 <script> |
29 description("This tests that the role attribute is not missed."); | 29 description("This tests that the role attribute is not missed."); |
30 | 30 |
31 if (window.testRunner) | 31 if (window.testRunner) |
32 testRunner.dumpAsText(); | 32 testRunner.dumpAsText(); |
33 if (window.accessibilityController) | 33 if (window.accessibilityController) |
34 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1); | 34 buildAccessibilityTree(accessibilityController.focusedElement, 0, 1); |
35 </script> | 35 </script> |
OLD | NEW |