OLD | NEW |
1 <!DOCTYPE HTML> | 1 <!DOCTYPE HTML> |
2 <html> | 2 <html> |
3 <body> | 3 <body> |
4 <script src="../fast/js/resources/js-test-pre.js"></script> | 4 <script src="../resources/js-test.js"></script> |
5 | 5 |
6 <div id="wrapper"> | 6 <div id="wrapper"> |
7 <a id="link" href="#">Link</a> | 7 <a id="link" href="#">Link</a> |
8 <button id="button">Button</button> | 8 <button id="button">Button</button> |
9 <button id="labeled-button" aria-label="Label">Button</button> | 9 <button id="labeled-button" aria-label="Label">Button</button> |
10 <button id="button-with-title" title="Title">Button</button> | 10 <button id="button-with-title" title="Title">Button</button> |
11 <input id="text" type="text" value="Value"> | 11 <input id="text" type="text" value="Value"> |
12 <input id="checkbox" type="checkbox" checked> | 12 <input id="checkbox" type="checkbox" checked> |
13 <input id="number" type="number" value="23"> | 13 <input id="number" type="number" value="23"> |
14 <input id="radio" type="radio" checked> | 14 <input id="radio" type="radio" checked> |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 shouldBe("axRole('onclick-anchor')", "'AXRole: AXLink'"); | 83 shouldBe("axRole('onclick-anchor')", "'AXRole: AXLink'"); |
84 shouldBe("axRole('click-listener-anchor')", "'AXRole: AXLink'"); | 84 shouldBe("axRole('click-listener-anchor')", "'AXRole: AXLink'"); |
85 | 85 |
86 document.getElementById("wrapper").hidden = true; | 86 document.getElementById("wrapper").hidden = true; |
87 } | 87 } |
88 | 88 |
89 </script> | 89 </script> |
90 | 90 |
91 </body> | 91 </body> |
92 </html> | 92 </html> |
OLD | NEW |